diff --git a/.reuse/dep5 b/.reuse/dep5 index a587459b..3a988e74 100644 --- a/.reuse/dep5 +++ b/.reuse/dep5 @@ -4,7 +4,7 @@ Upstream-Contact: haifeng.chen Source: # README -Files: README.md CHANGELOG.md README.zh_CN.md calendar-client/README.md +Files: README.md CHANGELOG.md README.zh_CN.md calendar-client/README.md docs/* Copyright: None License: CC-BY-4.0 diff --git a/calendar-client/CMakeLists.txt b/calendar-client/CMakeLists.txt index adc9e545..8d9059d2 100644 --- a/calendar-client/CMakeLists.txt +++ b/calendar-client/CMakeLists.txt @@ -70,6 +70,9 @@ find_package(DtkWidget REQUIRED) find_package(DtkGui REQUIRED) find_package(Qt5Network REQUIRED) +set_source_files_properties(src/dbus/org.deepin.dde.ControlCenter.xml PROPERTIES CLASSNAME ControlCenterProxy) +qt5_add_dbus_interface(Calendar_SRC src/dbus/org.deepin.dde.ControlCenter.xml controlCenterProxy) + include_directories(${Qt5Gui_PRIVATE_INCLUDE_DIRS}) # Tell CMake to create the executable add_executable(${PROJECT_NAME} ${Calendar_SRC} ${APP_QRC}) diff --git a/calendar-client/src/dataManage/accountmanager.cpp b/calendar-client/src/dataManage/accountmanager.cpp index 9bf19c3c..e6b99f27 100644 --- a/calendar-client/src/dataManage/accountmanager.cpp +++ b/calendar-client/src/dataManage/accountmanager.cpp @@ -160,12 +160,6 @@ void AccountManager::uploadNetWorkAccountData(CallbackFunc callback) m_dbusRequest->uploadNetWorkAccountData(); } -void AccountManager::setCalendarGeneralSettings(DCalendarGeneralSettings::Ptr ptr, CallbackFunc callback) -{ - m_dbusRequest->setCallbackFunc(callback); - m_dbusRequest->setCalendarGeneralSettings(ptr); -} - void AccountManager::setFirstDayofWeek(int value) { m_settings->setFirstDayOfWeek(static_cast(value)); @@ -178,6 +172,30 @@ void AccountManager::setTimeFormatType(int value) m_dbusRequest->setTimeFormatType(value); } +// 设置一周首日来源 +void AccountManager::setFirstDayofWeekSource(DCalendarGeneralSettings::GeneralSettingSource value) +{ + m_dbusRequest->setFirstDayofWeekSource(value); +}; + +// 设置时间显示格式来源 +void AccountManager::setTimeFormatTypeSource(DCalendarGeneralSettings::GeneralSettingSource value) +{ + m_dbusRequest->setTimeFormatTypeSource(value); +}; + +// 获取一周首日来源 +DCalendarGeneralSettings::GeneralSettingSource AccountManager::getFirstDayofWeekSource() +{ + return m_dbusRequest->getFirstDayofWeekSource(); +}; + +// 获取时间显示格式来源 +DCalendarGeneralSettings::GeneralSettingSource AccountManager::getTimeFormatTypeSource() +{ + return m_dbusRequest->getTimeFormatTypeSource(); +}; + /** * @brief login * 帐户登录 diff --git a/calendar-client/src/dataManage/accountmanager.h b/calendar-client/src/dataManage/accountmanager.h index b0b9cc2f..1ad33085 100644 --- a/calendar-client/src/dataManage/accountmanager.h +++ b/calendar-client/src/dataManage/accountmanager.h @@ -7,6 +7,7 @@ #include "dbus/dbusaccountmanagerrequest.h" #include "accountitem.h" +#include "dcalendargeneralsettings.h" //所有帐户管理类 class AccountManager : public QObject @@ -33,13 +34,18 @@ class AccountManager : public QObject //更新网络帐户数据 void uploadNetWorkAccountData(CallbackFunc callback = nullptr); - //设置通用设置 - void setCalendarGeneralSettings(DCalendarGeneralSettings::Ptr ptr, CallbackFunc callback = nullptr); - //设置一周首日 void setFirstDayofWeek(int); //设置时间显示格式 void setTimeFormatType(int); + // 设置一周首日来源 + void setFirstDayofWeekSource(DCalendarGeneralSettings::GeneralSettingSource); + // 设置时间显示格式来源 + void setTimeFormatTypeSource(DCalendarGeneralSettings::GeneralSettingSource); + // 获取一周首日来源 + DCalendarGeneralSettings::GeneralSettingSource getFirstDayofWeekSource(); + // 获取时间显示格式来源 + DCalendarGeneralSettings::GeneralSettingSource getTimeFormatTypeSource(); //帐户登录 void login(); //帐户登出 diff --git a/calendar-client/src/dbus/dbusaccountmanagerrequest.cpp b/calendar-client/src/dbus/dbusaccountmanagerrequest.cpp index cc3a1150..9f713e40 100644 --- a/calendar-client/src/dbus/dbusaccountmanagerrequest.cpp +++ b/calendar-client/src/dbus/dbusaccountmanagerrequest.cpp @@ -4,6 +4,7 @@ #include "dbusaccountmanagerrequest.h" #include "commondef.h" +#include "dcalendargeneralsettings.h" #include #include @@ -33,6 +34,66 @@ void DbusAccountManagerRequest::setTimeFormatType(int value) interface.setProperty("timeFormatType", QVariant(value)); } +/** + * @brief setFirstDayofWeekSource + * 设置一周首日来源 + */ +void DbusAccountManagerRequest::setFirstDayofWeekSource(DCalendarGeneralSettings::GeneralSettingSource value) +{ + QDBusInterface interface(this->service(), this->path(), this->interface(), QDBusConnection::sessionBus(), this); + interface.setProperty("firstDayOfWeekSource", QVariant(value)); +} + +/** + * @brief setTimeFormatTypeSource + * 设置时间显示格式来源 + */ +void DbusAccountManagerRequest::setTimeFormatTypeSource(DCalendarGeneralSettings::GeneralSettingSource value) +{ + QDBusInterface interface(this->service(), this->path(), this->interface(), QDBusConnection::sessionBus(), this); + interface.setProperty("timeFormatTypeSource", QVariant(value)); +} + +/** + * @brief getFirstDayofWeekSource + * 获取一周首日来源 + */ +DCalendarGeneralSettings::GeneralSettingSource DbusAccountManagerRequest::getFirstDayofWeekSource() +{ + QDBusInterface interface(this->service(), + this->path(), + this->interface(), + QDBusConnection::sessionBus(), + this); + bool ok; + auto val = interface.property("firstDayOfWeekSource").toInt(&ok); + if (ok) { + return static_cast(val); + } else { + return DCalendarGeneralSettings::Source_Database; + } +} + +/** + * @brief getTimeFormatTypeSource + * 获取时间显示格式来源 + */ +DCalendarGeneralSettings::GeneralSettingSource DbusAccountManagerRequest::getTimeFormatTypeSource() +{ + QDBusInterface interface(this->service(), + this->path(), + this->interface(), + QDBusConnection::sessionBus(), + this); + bool ok; + auto val = interface.property("timeFormatTypeSource").toInt(&ok); + if (ok) { + return static_cast(val); + } else { + return DCalendarGeneralSettings::Source_Database; + } +} + /** * @brief DbusAccountManagerRequest::getAccountList * 请求帐户列表 @@ -70,18 +131,6 @@ void DbusAccountManagerRequest::getCalendarGeneralSettings() asyncCall("getCalendarGeneralSettings"); } -/** - * @brief DbusAccountManagerRequest::setCalendarGeneralSettings - * 设置通用设置 - * @param ptr 通用设置 - */ -void DbusAccountManagerRequest::setCalendarGeneralSettings(DCalendarGeneralSettings::Ptr ptr) -{ - QString jsonStr; - DCalendarGeneralSettings::toJsonString(ptr, jsonStr); - asyncCall("setCalendarGeneralSettings", QVariant(jsonStr)); -} - /** * @brief DbusAccountManagerRequest::login * 帐户登录 diff --git a/calendar-client/src/dbus/dbusaccountmanagerrequest.h b/calendar-client/src/dbus/dbusaccountmanagerrequest.h index 77037dd7..e38af8a7 100644 --- a/calendar-client/src/dbus/dbusaccountmanagerrequest.h +++ b/calendar-client/src/dbus/dbusaccountmanagerrequest.h @@ -20,6 +20,14 @@ class DbusAccountManagerRequest : public DbusRequestBase void setFirstDayofWeek(int); //设置时间显示格式 void setTimeFormatType(int); + // 设置一周首日来源 + void setFirstDayofWeekSource(DCalendarGeneralSettings::GeneralSettingSource); + // 设置时间显示格式来源 + void setTimeFormatTypeSource(DCalendarGeneralSettings::GeneralSettingSource); + // 获取一周首日来源 + DCalendarGeneralSettings::GeneralSettingSource getFirstDayofWeekSource(); + // 获取时间显示格式来源 + DCalendarGeneralSettings::GeneralSettingSource getTimeFormatTypeSource(); //获取帐户列表 void getAccountList(); @@ -29,8 +37,6 @@ class DbusAccountManagerRequest : public DbusRequestBase void uploadNetWorkAccountData(); //获取通用设置 void getCalendarGeneralSettings(); - //设置通用设置 - void setCalendarGeneralSettings(DCalendarGeneralSettings::Ptr ptr); // void clientIsShow(bool isShow); //获取是否支持云同步 diff --git a/calendar-client/src/dbus/org.deepin.dde.ControlCenter.xml b/calendar-client/src/dbus/org.deepin.dde.ControlCenter.xml new file mode 100644 index 00000000..100b2610 --- /dev/null +++ b/calendar-client/src/dbus/org.deepin.dde.ControlCenter.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/calendar-client/src/dialog/settingdialog.cpp b/calendar-client/src/dialog/settingdialog.cpp index fef20b39..0f50fcd3 100644 --- a/calendar-client/src/dialog/settingdialog.cpp +++ b/calendar-client/src/dialog/settingdialog.cpp @@ -5,6 +5,8 @@ #include "settingdialog.h" #include "cdynamicicon.h" #include "accountmanager.h" +#include "commondef.h" +#include "dcalendargeneralsettings.h" #include "settingWidget/userloginwidget.h" #include "accountmanager.h" #include "calendarmanage.h" @@ -21,6 +23,11 @@ #include #include +#include + +const QString ControlCenterDBusName = "org.deepin.dde.ControlCenter1"; +const QString ControlCenterDBusPath = "/org/deepin/dde/ControlCenter1"; +const QString ControlCenterPage = "datetime/region"; using namespace SettingWidget; //静态的翻译不会真的翻译,但是会更新ts文件 @@ -142,26 +149,19 @@ static CalendarSettingSetting setting_general = { "general", QObject::tr("General"), { - { - "firstday", //key - QObject::tr("First day of week"), //name - "FirstDayofWeek", //type - "", //default - "Sunday" //text - }, - - { - "time", //key - QObject::tr("Time"), //name - "Time", //type - "" //default - } - } - } + { "firstday", QObject::tr("First day of week"), "FirstDayofWeek", "", "Sunday" }, + { "time", QObject::tr("Time"), "Time", "" }, + { "control-center-button", "", "ControlCenterLink", "" }, + }, + }, } }; CSettingDialog::CSettingDialog(QWidget *parent) : DSettingsDialog(parent) { + m_controlCenterProxy = new ControlCenterProxy(ControlCenterDBusName, + ControlCenterDBusPath, + QDBusConnection::sessionBus(), + this); initWidget(); initConnect(); initData(); @@ -176,6 +176,7 @@ void CSettingDialog::initView() widgetFactory()->registerWidget("login", UserloginWidget::createloginButton); widgetFactory()->registerWidget("FirstDayofWeek", std::bind(&CSettingDialog::createFirstDayofWeekWidget, this, std::placeholders::_1)); widgetFactory()->registerWidget("Time", std::bind(&CSettingDialog::createTimeTypeWidget, this, std::placeholders::_1)); + widgetFactory()->registerWidget("ControlCenterLink", std::bind(&CSettingDialog::createControlCenterLink, this, std::placeholders::_1)); widgetFactory()->registerWidget("AccountCombobox", std::bind(&CSettingDialog::createAccountCombobox, this, std::placeholders::_1)); widgetFactory()->registerWidget("JobTypeListView", std::bind(&CSettingDialog::createJobTypeListView, this, std::placeholders::_1)); widgetFactory()->registerWidget("SyncTagRadioButton", std::bind(&CSettingDialog::createSyncTagRadioButton, this, std::placeholders::_1)); @@ -343,6 +344,7 @@ void CSettingDialog::initFirstDayofWeekWidget() m_firstDayofWeekCombobox->setFixedSize(150, 36); m_firstDayofWeekCombobox->addItem(tr("Sunday")); m_firstDayofWeekCombobox->addItem(tr("Monday")); + m_firstDayofWeekCombobox->addItem(tr("Use System Setting")); QHBoxLayout *layout = new QHBoxLayout(m_firstDayofWeekWidget); layout->setContentsMargins(0, 0, 0, 0); @@ -361,6 +363,7 @@ void CSettingDialog::initTimeTypeWidget() m_timeTypeCombobox->setFixedSize(150, 36); m_timeTypeCombobox->addItem(tr("24-hour clock")); m_timeTypeCombobox->addItem(tr("12-hour clock")); + m_timeTypeCombobox->addItem(tr("Use System Setting")); QHBoxLayout *layout = new QHBoxLayout(m_timeTypeWidget); layout->setContentsMargins(0, 0, 0, 0); @@ -453,9 +456,7 @@ void CSettingDialog::slotLogout(DAccount::Type type) void CSettingDialog::slotFirstDayofWeekCurrentChanged(int index) { DCalendarGeneralSettings::Ptr setting = gAccountManager->getGeneralSettings(); - if (index == setting->firstDayOfWeek() % 7) { - return; - } + //此次只设置一周首日,不刷新界面 if (index == 0) { gAccountManager->setFirstDayofWeek(7); @@ -463,18 +464,28 @@ void CSettingDialog::slotFirstDayofWeekCurrentChanged(int index) } else if (index == 1) { gAccountManager->setFirstDayofWeek(1); gCalendarManager->setFirstDayOfWeek(1, false); + } else { + if (gAccountManager->getFirstDayofWeekSource() != DCalendarGeneralSettings::Source_System) { + gAccountManager->setFirstDayofWeekSource(DCalendarGeneralSettings::Source_System); + } } } void CSettingDialog::slotTimeTypeCurrentChanged(int index) { DCalendarGeneralSettings::Ptr setting = gAccountManager->getGeneralSettings(); - if (index == setting->timeShowType()) { - return; + + if (index == 0) { + gAccountManager->setTimeFormatType(DCalendarGeneralSettings::TwentyFour); + gCalendarManager->setTimeShowType(DCalendarGeneralSettings::TwentyFour, false); + } else if (index == 1) { + gAccountManager->setTimeFormatType(DCalendarGeneralSettings::Twelve); + gCalendarManager->setTimeShowType(DCalendarGeneralSettings::Twelve, false); + } else { + if (gAccountManager->getTimeFormatTypeSource() != DCalendarGeneralSettings::Source_System) { + gAccountManager->setTimeFormatTypeSource(DCalendarGeneralSettings::Source_System); + } } - gAccountManager->setTimeFormatType(index); - //设置时间显示格式不刷新界面 - gCalendarManager->setTimeShowType(index, false); } void CSettingDialog::slotAccountCurrentChanged(int index) @@ -596,17 +607,22 @@ void CSettingDialog::setFirstDayofWeek(int value) if (!m_firstDayofWeekCombobox) { return; } - //设置一周首日并刷新界面 - if (value == 1) { - m_firstDayofWeekCombobox->setCurrentIndex(1); - gCalendarManager->setFirstDayOfWeek(1, true); + auto sourceSystem = + gAccountManager->getFirstDayofWeekSource() == DCalendarGeneralSettings::Source_System; + + if (sourceSystem) { + m_firstDayofWeekCombobox->setCurrentIndex(m_firstDayofWeekCombobox->count() - 1); } else { - m_firstDayofWeekCombobox->setCurrentIndex(0); - gCalendarManager->setFirstDayOfWeek(7, true); + if (value == 1) { + m_firstDayofWeekCombobox->setCurrentIndex(1); + } else { + m_firstDayofWeekCombobox->setCurrentIndex(0); + } } + // 设置一周首日并刷新界面 + gCalendarManager->setFirstDayOfWeek(value, true); } - void CSettingDialog::setTimeType(int value) { if (!m_timeTypeCombobox) { @@ -615,8 +631,14 @@ void CSettingDialog::setTimeType(int value) if (value > 1 || value < 0) { value = 0; } - //设置时间显示格式并刷新界面 - m_timeTypeCombobox->setCurrentIndex(value); + auto sourceSystem = + gAccountManager->getTimeFormatTypeSource() == DCalendarGeneralSettings::Source_System; + // 设置时间显示格式并刷新界面 + if (sourceSystem) { + m_timeTypeCombobox->setCurrentIndex(m_firstDayofWeekCombobox->count() - 1); + } else { + m_timeTypeCombobox->setCurrentIndex(value); + } gCalendarManager->setTimeShowType(value, true); } @@ -742,3 +764,23 @@ DIconButton *CSettingDialog::createTypeAddButton() { return m_typeAddBtn; } + +QWidget *CSettingDialog::createControlCenterLink(QObject *obj) +{ + DLabel *myLabel = new DLabel(tr("Please go to the Control Center to change system settings"), this); + myLabel->setTextFormat(Qt::RichText); + myLabel->setFixedHeight(36); + connect(myLabel, &DLabel::linkActivated, this, [this]{ + qCDebug(ClientLogger) << "open deepin control center"; + this->m_controlCenterProxy->ShowPage(ControlCenterPage); + }); + auto w = new QWidget(this); + QHBoxLayout *layout = new QHBoxLayout(w); + layout->setContentsMargins(0, 0, 10, 0); + layout->setSpacing(0); + layout->addStretch(10); + layout->addWidget(myLabel, 1); + + w->setLayout(layout); + return w; +} \ No newline at end of file diff --git a/calendar-client/src/dialog/settingdialog.h b/calendar-client/src/dialog/settingdialog.h index 1c55b901..39225179 100644 --- a/calendar-client/src/dialog/settingdialog.h +++ b/calendar-client/src/dialog/settingdialog.h @@ -7,8 +7,10 @@ #include "settingWidget/settingwidgets.h" #include "doanetworkdbus.h" +#include "controlCenterProxy.h" #include #include +#include DWIDGET_USE_NAMESPACE @@ -27,6 +29,7 @@ class CSettingDialog : public DSettingsDialog QWidget *createManualSyncButton(QObject *obj); QWidget *createJobTypeListView(QObject *obj); DIconButton *createTypeAddButton(); + QWidget *createControlCenterLink(QObject *obj); public slots: void slotGeneralSettingsUpdate(); @@ -74,7 +77,7 @@ public slots: private: //一周首日 QWidget *m_firstDayofWeekWidget = nullptr; - QComboBox *m_firstDayofWeekCombobox = nullptr; + QComboBox *m_firstDayofWeekCombobox= nullptr; //时间格式 QWidget *m_timeTypeWidget = nullptr; @@ -97,6 +100,7 @@ public slots: DOANetWorkDBus *m_ptrNetworkState; SettingWidget::SyncTagRadioButton *m_radiobuttonAccountCalendar = nullptr; SettingWidget::SyncTagRadioButton *m_radiobuttonAccountSetting = nullptr; + ControlCenterProxy *m_controlCenterProxy; }; #endif // SETTINGDIALOG_H diff --git a/calendar-common/src/dcalendargeneralsettings.h b/calendar-common/src/dcalendargeneralsettings.h index 5474c8b9..4656a6c0 100644 --- a/calendar-common/src/dcalendargeneralsettings.h +++ b/calendar-common/src/dcalendargeneralsettings.h @@ -21,6 +21,12 @@ class DCalendarGeneralSettings Twelve, //12 }; + enum GeneralSettingSource { + Source_Database, // 来自系统设置(即控制中心) + Source_System, // 来自数据库(旧版本日历配置存放在数据库) + Source_Unknown, // 用于确定枚举边界 + }; + typedef QSharedPointer Ptr; DCalendarGeneralSettings(); diff --git a/calendar-service/src/calendarDataManager/daccountmanagemodule.cpp b/calendar-service/src/calendarDataManager/daccountmanagemodule.cpp index 180049c5..719560cb 100644 --- a/calendar-service/src/calendarDataManager/daccountmanagemodule.cpp +++ b/calendar-service/src/calendarDataManager/daccountmanagemodule.cpp @@ -6,13 +6,27 @@ #include "commondef.h" #include "units.h" #include "calendarprogramexitcontrol.h" +#include #include +const QString firstDayOfWeek_key = "firstDayOfWeek"; +const QString shortTimeFormat_key = "shortTimeFormat"; +const QString firstDayOfWeekSource_key = "firstDayOfWeekSource"; +const QString shortTimeFormatSource_key = "shortTimeFormatSource"; + DAccountManageModule::DAccountManageModule(QObject *parent) : QObject(parent) , m_syncFileManage(new SyncFileManage()) , m_accountManagerDB(new DAccountManagerDataBase) + , m_reginFormatConfig(DTK_CORE_NAMESPACE::DConfig::createGeneric("org.deepin.region-format", QString(), this)) + , m_settings(QStandardPaths::writableLocation(QStandardPaths::AppConfigLocation) + "/config.ini", QSettings::IniFormat) { + if (m_reginFormatConfig->isValid()) { + connect(m_reginFormatConfig, + &DTK_CORE_NAMESPACE::DConfig::valueChanged, + this, + &DAccountManageModule::slotSettingChange); + } m_isSupportUid = m_syncFileManage->getSyncoperation()->hasAvailable(); if(Dtk::Core::DSysInfo::isCommunityEdition()){ m_isSupportUid = false; @@ -49,7 +63,7 @@ DAccountManageModule::DAccountManageModule(QObject *parent) } } } - m_generalSetting = m_accountManagerDB->getCalendarGeneralSettings(); + m_generalSetting = getGeneralSettings(); connect(&m_timer, &QTimer::timeout, this, &DAccountManageModule::slotClientIsOpen); m_timer.start(2000); @@ -73,7 +87,7 @@ QString DAccountManageModule::getAccountList() QString DAccountManageModule::getCalendarGeneralSettings() { QString cgSetStr; - m_generalSetting = m_accountManagerDB->getCalendarGeneralSettings(); + m_generalSetting = getGeneralSettings(); DCalendarGeneralSettings::toJsonString(m_generalSetting, cgSetStr); return cgSetStr; } @@ -83,7 +97,7 @@ void DAccountManageModule::setCalendarGeneralSettings(const QString &cgSet) DCalendarGeneralSettings::Ptr cgSetPtr = DCalendarGeneralSettings::Ptr(new DCalendarGeneralSettings); DCalendarGeneralSettings::fromJsonString(cgSetPtr, cgSet); if (m_generalSetting != cgSetPtr) { - m_accountManagerDB->setCalendarGeneralSettings(cgSetPtr); + setGeneralSettings(cgSetPtr); DCalendarGeneralSettings::Ptr tmpSetting = DCalendarGeneralSettings::Ptr(m_generalSetting->clone()); m_generalSetting = cgSetPtr; if (tmpSetting->firstDayOfWeek() != m_generalSetting->firstDayOfWeek()) { @@ -104,7 +118,7 @@ void DAccountManageModule::setFirstDayOfWeek(const int firstday) { if (m_generalSetting->firstDayOfWeek() != firstday) { m_generalSetting->setFirstDayOfWeek(static_cast(firstday)); - m_accountManagerDB->setCalendarGeneralSettings(m_generalSetting); + setGeneralSettings(m_generalSetting); foreach (auto account, m_accountList) { if (account->accountType() == DAccount::Account_UnionID) { m_accountModuleMap[account->accountID()]->accountDownload(); @@ -122,7 +136,7 @@ void DAccountManageModule::setTimeFormatType(const int timeType) { if (m_generalSetting->timeShowType() != timeType) { m_generalSetting->setTimeShowType(static_cast(timeType)); - m_accountManagerDB->setCalendarGeneralSettings(m_generalSetting); + setGeneralSettings(m_generalSetting); foreach (auto account, m_accountList) { if (account->accountType() == DAccount::Account_UnionID) { m_accountModuleMap[account->accountID()]->accountDownload(); @@ -316,6 +330,38 @@ void DAccountManageModule::setUidSwitchStatus(const DAccount::Ptr &account) account->setAccountState(accountState); } +// 获取通用配置 +DCalendarGeneralSettings::Ptr DAccountManageModule::getGeneralSettings() +{ + auto cg = m_accountManagerDB->getCalendarGeneralSettings(); + if(getFirstDayOfWeekSource()==DCalendarGeneralSettings::Source_System){ + bool ok; + auto dayofWeek = Qt::DayOfWeek(m_reginFormatConfig->value(firstDayOfWeek_key).toInt(&ok)); + if (ok) { + cg->setFirstDayOfWeek(dayofWeek); + } else { + qWarning() << "Unable to get first day of week from control center config file"; + } + } + if(getTimeFormatTypeSource()==DCalendarGeneralSettings::Source_System){ + auto shortTimeFormat = m_reginFormatConfig->value(shortTimeFormat_key).toString(); + if (shortTimeFormat.isEmpty()) { + qWarning() << "Unable to short time format from control center config file"; + } else if (shortTimeFormat.contains("ap")) { + cg->setTimeShowType(DCalendarGeneralSettings::Twelve); + } else { + cg->setTimeShowType(DCalendarGeneralSettings::TwentyFour); + } + } + return cg; +} + +// 更改通用配置 +void DAccountManageModule::setGeneralSettings(const DCalendarGeneralSettings::Ptr &cgSet) +{ + m_accountManagerDB->setCalendarGeneralSettings(cgSet); +}; + void DAccountManageModule::slotFirstDayOfWeek(const int firstDay) { if (getfirstDayOfWeek() != firstDay) { @@ -332,6 +378,30 @@ void DAccountManageModule::slotTimeFormatType(const int timeType) } } +DCalendarGeneralSettings::GeneralSettingSource DAccountManageModule::getFirstDayOfWeekSource() +{ + auto val = m_settings.value(firstDayOfWeekSource_key, DCalendarGeneralSettings::Source_Database); + return static_cast(val.toInt()); +} + +void DAccountManageModule::setFirstDayOfWeekSource(const DCalendarGeneralSettings::GeneralSettingSource source) +{ + m_settings.setValue(firstDayOfWeekSource_key, source); + emit firstDayOfWeekChange(); +} + +DCalendarGeneralSettings::GeneralSettingSource DAccountManageModule::getTimeFormatTypeSource() +{ + auto val = m_settings.value(shortTimeFormatSource_key, DCalendarGeneralSettings::GeneralSettingSource::Source_Database); + return static_cast(val.toInt()); +} + +void DAccountManageModule::setTimeFormatTypeSource(const DCalendarGeneralSettings::GeneralSettingSource source) +{ + m_settings.setValue(shortTimeFormatSource_key, source); + emit timeFormatTypeChange(); +} + void DAccountManageModule::slotUidLoginStatueChange(const int status) { //因为有时登录成功会触发2次 @@ -427,7 +497,7 @@ void DAccountManageModule::slotSwitcherChange(const bool state) void DAccountManageModule::slotSettingChange() { - DCalendarGeneralSettings::Ptr newSetting = m_accountManagerDB->getCalendarGeneralSettings(); + DCalendarGeneralSettings::Ptr newSetting = getGeneralSettings(); if (newSetting->firstDayOfWeek() != m_generalSetting->firstDayOfWeek()) { m_generalSetting->setFirstDayOfWeek(newSetting->firstDayOfWeek()); emit firstDayOfWeekChange(); diff --git a/calendar-service/src/calendarDataManager/daccountmanagemodule.h b/calendar-service/src/calendarDataManager/daccountmanagemodule.h index d0ef3da1..7a0dd51a 100644 --- a/calendar-service/src/calendarDataManager/daccountmanagemodule.h +++ b/calendar-service/src/calendarDataManager/daccountmanagemodule.h @@ -5,6 +5,7 @@ #ifndef DACCOUNTMANAGEMODULE_H #define DACCOUNTMANAGEMODULE_H +#include "dcalendargeneralsettings.h" #include "syncfilemanage.h" #include "daccount.h" #include "daccountmodule.h" @@ -14,6 +15,7 @@ #include #include #include +#include //帐户类型总数,若支持的类型增加则需要修改 const int accountTypeCount = 3; @@ -40,6 +42,11 @@ class DAccountManageModule : public QObject int getTimeFormatType(); void setTimeFormatType(const int timeType); + DCalendarGeneralSettings::GeneralSettingSource getFirstDayOfWeekSource(); + void setFirstDayOfWeekSource(const DCalendarGeneralSettings::GeneralSettingSource source); + DCalendarGeneralSettings::GeneralSettingSource getTimeFormatTypeSource(); + void setTimeFormatTypeSource(const DCalendarGeneralSettings::GeneralSettingSource source); + void remindJob(const QString &accountID, const QString &alarmID); /** @@ -80,6 +87,10 @@ class DAccountManageModule : public QObject //获取设置开关状态 void setUidSwitchStatus(const DAccount::Ptr &account); + DCalendarGeneralSettings::Ptr getGeneralSettings(); + + void setGeneralSettings(const DCalendarGeneralSettings::Ptr &cgSet); + signals: void firstDayOfWeekChange(); void timeFormatTypeChange(); @@ -105,8 +116,10 @@ public slots: QMap m_accountModuleMap; QMap m_AccountServiceMap[accountTypeCount]; DCalendarGeneralSettings::Ptr m_generalSetting; + DTK_CORE_NAMESPACE::DConfig *m_reginFormatConfig; QTimer m_timer; bool m_isSupportUid = false; + QSettings m_settings; }; #endif // DACCOUNTMANAGEMODULE_H diff --git a/calendar-service/src/dbmanager/daccountmanagerdatabase.cpp b/calendar-service/src/dbmanager/daccountmanagerdatabase.cpp index 65280ef7..a374fdbc 100644 --- a/calendar-service/src/dbmanager/daccountmanagerdatabase.cpp +++ b/calendar-service/src/dbmanager/daccountmanagerdatabase.cpp @@ -170,7 +170,7 @@ bool DAccountManagerDataBase::deleteAccountInfo(const QString &accountID) } return res; } - +// 保存通用设置 DCalendarGeneralSettings::Ptr DAccountManagerDataBase::getCalendarGeneralSettings() { DCalendarGeneralSettings::Ptr cgSet(new DCalendarGeneralSettings); @@ -185,7 +185,7 @@ DCalendarGeneralSettings::Ptr DAccountManagerDataBase::getCalendarGeneralSetting return cgSet; } - +// 获取通用设置 void DAccountManagerDataBase::setCalendarGeneralSettings(const DCalendarGeneralSettings::Ptr &cgSet) { SqliteQuery query(m_database); diff --git a/calendar-service/src/dbusservice/daccountmanagerservice.cpp b/calendar-service/src/dbusservice/daccountmanagerservice.cpp index 20f21c4f..3860ac94 100644 --- a/calendar-service/src/dbusservice/daccountmanagerservice.cpp +++ b/calendar-service/src/dbusservice/daccountmanagerservice.cpp @@ -82,6 +82,8 @@ void DAccountManagerService::setCalendarGeneralSettings(const QString &cgSet) if (!clientWhite(0)) { return; } + m_accountManager->setFirstDayOfWeekSource(DCalendarGeneralSettings::Source_Database); + m_accountManager->setTimeFormatTypeSource(DCalendarGeneralSettings::Source_Database); m_accountManager->setCalendarGeneralSettings(cgSet); } @@ -131,6 +133,7 @@ int DAccountManagerService::getfirstDayOfWeek() const void DAccountManagerService::setFirstDayOfWeek(const int firstday) { DServiceExitControl exitControl; + m_accountManager->setFirstDayOfWeekSource(DCalendarGeneralSettings::Source_Database); m_accountManager->setFirstDayOfWeek(firstday); } @@ -143,5 +146,32 @@ int DAccountManagerService::getTimeFormatType() const void DAccountManagerService::setTimeFormatType(const int timeType) { DServiceExitControl exitControl; + m_accountManager->setTimeFormatTypeSource(DCalendarGeneralSettings::Source_Database); m_accountManager->setTimeFormatType(timeType); } + +int DAccountManagerService::getFirstDayOfWeekSource() +{ + return static_cast(m_accountManager->getFirstDayOfWeekSource()); +} + +void DAccountManagerService::setFirstDayOfWeekSource(const int source) +{ + if (source >= 0 && source < DCalendarGeneralSettings::GeneralSettingSource::Source_Unknown) { + auto val = static_cast(source); + m_accountManager->setFirstDayOfWeekSource(val); + } +} + +int DAccountManagerService::getTimeFormatTypeSource() +{ + return static_cast(m_accountManager->getTimeFormatTypeSource()); +} + +void DAccountManagerService::setTimeFormatTypeSource(const int source) +{ + if (source >= 0 && source < DCalendarGeneralSettings::GeneralSettingSource::Source_Unknown) { + auto val = static_cast(source); + m_accountManager->setTimeFormatTypeSource(val); + } +} \ No newline at end of file diff --git a/calendar-service/src/dbusservice/daccountmanagerservice.h b/calendar-service/src/dbusservice/daccountmanagerservice.h index e4fd6dd6..509e1022 100644 --- a/calendar-service/src/dbusservice/daccountmanagerservice.h +++ b/calendar-service/src/dbusservice/daccountmanagerservice.h @@ -20,6 +20,8 @@ class DAccountManagerService : public DServiceBase Q_CLASSINFO("D-Bus Interface", "com.deepin.dataserver.Calendar.AccountManager") Q_PROPERTY(int firstDayOfWeek READ getfirstDayOfWeek WRITE setFirstDayOfWeek) Q_PROPERTY(int timeFormatType READ getTimeFormatType WRITE setTimeFormatType) + Q_PROPERTY(int firstDayOfWeekSource READ getFirstDayOfWeekSource WRITE setFirstDayOfWeekSource) + Q_PROPERTY(int timeFormatTypeSource READ getTimeFormatTypeSource WRITE setTimeFormatTypeSource) public: explicit DAccountManagerService(QObject *parent = nullptr); public slots: @@ -67,6 +69,11 @@ public slots: int getTimeFormatType() const; void setTimeFormatType(const int timeType); + int getFirstDayOfWeekSource(); + void setFirstDayOfWeekSource(const int source); + int getTimeFormatTypeSource(); + void setTimeFormatTypeSource(const int source); + private: DAccountManageModule::Ptr m_accountManager; }; diff --git a/calendar-service/src/main.cpp b/calendar-service/src/main.cpp index 3646be05..aceff117 100644 --- a/calendar-service/src/main.cpp +++ b/calendar-service/src/main.cpp @@ -28,7 +28,7 @@ bool loadTranslator(QCoreApplication *app, QList localeFallback = QList app->installTranslator(translator); bsuccess = true; } - QStringList parseLocalNameList = locale.name().split("_", QString::SkipEmptyParts); + QStringList parseLocalNameList = locale.name().split("_", Qt::SkipEmptyParts); if (parseLocalNameList.length() > 0 && !bsuccess) { translateFilename = QString("%1_%2").arg(app->applicationName()).arg(parseLocalNameList.at(0)); QString parseTranslatePath = QString("%1/%2.qm").arg(CalendarServiceTranslationsDir).arg(translateFilename); diff --git a/docs/interface.md b/docs/interface.md new file mode 100644 index 00000000..a7d69981 --- /dev/null +++ b/docs/interface.md @@ -0,0 +1,64 @@ +## 获取农历信息 + +| DBus | `com.deepin.dataserver.Calendar` | +| ---- | ---------------------------------------------------------------------------- | +| 路径 | `/com/deepin/dataserver/Calendar/HuangLi` | +| 接口 | `com.deepin.dataserver.Calendar.HuangLi` | +| 方法 | `getHuangLiMonth (UInt32 year, UInt32 month, Boolean fill) ↦ (String arg_0)` | + +参数说明: + +- year 公历年 +- month 公历月 +- fill 是否从周日开始补齐上下月信息。例如 2024 年 3 月 1 号是星期五(农历二十一),如果 fill 为 false,返回的数据从星期五(农历二十一)开始,如果 fill 为 true,返回的数据从星期日(农历十六)开始。 + +接口返回的是一个 json 对象数组序列化后的字符串,部分字段已弃用,主要关注 GanZhiDay、GanZhiMonth、GanZhiYear、LunarDayName、LunarMonthName、Zodiac、Term + +| 字段 | 解释 | +| -------------- | ---------------------------------------------------------------------- | +| Avoid | 用于指定应该避免的事项或活动。 | +| GanZhiDay | 表示农历日期的干支表示法,"己未"指的是具体的天干和地支的组合。 | +| GanZhiMonth | 表示农历月份的干支表示法,"丙寅"指的是具体的天干和地支的组合。 | +| GanZhiYear | 表示农历年份的干支表示法,"甲辰"指的是具体的天干和地支的组合。 | +| LunarDayName | 表示农历日期的名称,"十六"表示这一天是农历月份中的第十六天。 | +| LunarFestival | 用于指定农历的传统节日。 | +| LunarLeapMonth | 表示农历是否有闰月,0 表示没有闰月,正常的农历月份。 | +| LunarMonthName | 表示农历月份的名称,"正月"表示这一天所在的月份是农历的正月。 | +| SolarFestival | 用于指定阳历的传统节日。 | +| Suit | 用于指定适合进行的活动或事项。 | +| Term | 表示二十四节气中的具体术语。 | +| Worktime | 表示工作时间,但在给定的 JSON 中为 0,可能表示没有特定的工作时间要求。 | +| Zodiac | 表示生肖,"龙"代表相应的生肖。 | + +## 获取节假日信息 + +| DBus | `com.deepin.dataserver.Calendar` | +| ---- | --------------------------------------------------------------- | +| 路径 | `/com/deepin/dataserver/Calendar/HuangLi` | +| 接口 | `com.deepin.dataserver.Calendar.HuangLi` | +| 方法 | `getFestivalMonth (UInt32 year, UInt32 month) ↦ (String arg_0)` | + +参数说明: + +- year 公历年 +- month 公历月 + +接口返回的是一个 json 对象数组序列化后的字符串,部分字段已弃用,主要关注 list 字段 + +date:公历日期,例子:2024-05-01 +name:节假日名称,例子:劳动节 +status:调休标识,1 为休息,2 为调休 + +## 获取控制中心时间格式 + +| DTK Config | `Dtk::Core::DConfig` | +| ---------- | -------------------------- | +| 名字 | `org.deepin.region-format` | +| 配置项 | `shortTimeFormat` | + +## 获取控制中心每周首日 + +| DTK Config | `Dtk::Core::DConfig` | +| ---------- | -------------------------- | +| 名字 | `org.deepin.region-format` | +| 配置项 | `firstDayOfWeek` | diff --git a/docs/notes.md b/docs/notes.md new file mode 100644 index 00000000..590e1403 --- /dev/null +++ b/docs/notes.md @@ -0,0 +1,11 @@ +# 日历代码梳理笔记 + + +## 日历的通用配置 + +在 service 端由 daccountmanagerservice 提供 dbus 接口,daccountmanagemodule 提供具体功能, +daccountmanagerdatabase 操作数据库。 + +dbusservice -> calendarDataManager -> dbmanager + +现在要实现通用配置中的“每星期开始”和“时间格式”跟随控制中心,最初的想法是给通用配置添加新的值,比如-1来代表需要跟随控制中心,但这样可能会导致其他使用这两个配置项的应用得到意外的值,所以决定给通用配置新增两个配置项,用来标识“每星期开始”和“时间格式”是否跟随控制中心。 \ No newline at end of file diff --git a/translations/dde-calendar-service_am_ET.ts b/translations/dde-calendar-service_am_ET.ts index 31ce66d1..7f8817d4 100644 --- a/translations/dde-calendar-service_am_ET.ts +++ b/translations/dde-calendar-service_am_ET.ts @@ -4,22 +4,18 @@ AccountItem - Sync successful - Network error - Server exception - Storage full @@ -27,12 +23,10 @@ AccountManager - Local account - Event types @@ -40,57 +34,47 @@ CColorPickerWidget - Color - + ቀለም - Cancel button - + መሰረዣ - Save button - + ማስቀመጫ CDayMonthView - Monday - Tuesday - Wednesday - Thursday - Friday - Saturday - Sunday @@ -98,22 +82,18 @@ CDayWindow - Y - + Y - M - + M - D - Lunar @@ -121,7 +101,6 @@ CGraphicsView - New Event @@ -129,7 +108,6 @@ CMonthScheduleNumItem - %1 more @@ -137,12 +115,10 @@ CMonthView - New event - New Event @@ -150,41 +126,35 @@ CMonthWindow - Y - + Y CMyScheduleView - My Event - OK button - + እሺ - Delete button - + ማጥፊያ - Edit button - + ማረሚያ CPushButton - New event type @@ -192,410 +162,298 @@ CScheduleDlg - - - New Event - Edit Event - End time must be greater than start time - OK button - + እሺ - - - - - - Never - + በፍጹም - At time of event - 15 minutes before - 30 minutes before - 1 hour before - - 1 day before - - 2 days before - - 1 week before - On start day (9:00 AM) - - - - time(s) - Enter a name please - The name can not only contain whitespaces - - Type: - + አይነት: - - Description: - - All Day: - - Starts: - - Ends: - - Remind Me: - - Repeat: - - End Repeat: - Calendar account: - Calendar account - Type - + አይነት - Description - + መግለጫ - All Day - Time: - Time - Solar - Lunar - Starts - Ends - Remind Me - Repeat - + መድገሚያ - - Daily - - Weekdays - - Weekly - - - Monthly - - - Yearly - End Repeat - After - On - + ማብሪያ - Cancel button - + መሰረዣ - Save button - + ማስቀመጫ CScheduleOperation - All occurrences of a repeating event must have the same all-day status. - - Do you want to change all occurrences? - - - - - - - Cancel button - + መሰረዣ - - Change All - You are changing the repeating rule of this event. - - - You are deleting an event. - Are you sure you want to delete this event? - Delete button - + ማጥፊያ - Do you want to delete all occurrences of this event, or only the selected occurrence? - Delete All - - Delete Only This Event - Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - Delete All Future Events - - You are changing a repeating event. - Do you want to change only this occurrence of the event, or all occurrences? - All - - Only This Event - Do you want to change only this occurrence of the event, or this and all future occurrences? - All Future Events - You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - OK button - + እሺ CScheduleSearchDateItem - Y - + Y - M - + M - D @@ -603,17 +461,14 @@ CScheduleSearchItem - Edit - + ማረሚያ - Delete - + ማጥፊያ - All Day @@ -621,15 +476,13 @@ CScheduleSearchView - No search results - + ምንም መፈለጊያ የለም CScheduleView - ALL DAY @@ -637,75 +490,89 @@ CSettingDialog - - Sunday + import ICS file + + + + Manual + በ እጅ + + + 15 mins + + + + 30 mins + + + + 1 hour + 1 ሰአት + + + 24 hours + + + + Sync Now + + + + Last sync - Monday - - 24-hour clock + Tuesday - - 12-hour clock + Wednesday - - Manual + Thursday - - 15 mins + Friday - - 30 mins + Saturday - - 1 hour + Sunday - - 24 hours + 12-hour clock - - Sync Now + 24-hour clock - - Last sync + Please go to the <a href='/'>Control Center</a> to change settings CTimeEdit - (%1 mins) - (%1 hour) - (%1 hours) @@ -713,28 +580,22 @@ CTitleWidget - Y - + Y - M - + M - W - D - - Search events and festivals @@ -742,64 +603,52 @@ CWeekWidget - Sun - + እሑድ - Mon - + ሰኞ - Tue - + ማክሰ - Wed - + ረቡዕ - Thu - + ሐሙስ - Fri - + አርብ - Sat - + ቅዳሜ CWeekWindow - Week - Y - + Y CYearScheduleView - - All Day - No event @@ -807,20 +656,17 @@ CYearWindow - Y - + Y CalendarWindow - Calendar - + ቀን መቁጠሪያ - Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. @@ -828,32 +674,26 @@ Calendarmainwindow - Calendar - + ቀን መቁጠሪያ - Manage - Privacy Policy - Syncing... - Sync successful - Sync failed, please try later @@ -861,7 +701,6 @@ CenterWidget - All Day @@ -869,106 +708,81 @@ DAccountDataBase - Work - Life - Other - + ለላ DAlarmManager - - - - Close button - መዝጊያ + መዝጊያ - One day before start - አንድ ቀን ከ መጀመሩ በፊት + አንድ ቀን ከ መጀመሩ በፊት - Remind me tomorrow - ነገ አስታውሰኝ + ነገ አስታውሰኝ - Remind me later - በኋላ አስታውሰኝ + በኋላ አስታውሰኝ - 15 mins later - 1 hour later - 4 hours later - - - Tomorrow - ነገ + ነገ - Schedule Reminder - አስታዋሽ ማሰናጃ + አስታዋሽ ማሰናጃ - - %1 to %2 - %1 እስከ %2 + %1 እስከ %2 - - Today - ዛሬ + ዛሬ DragInfoGraphicsView - Edit - + ማረሚያ - Delete - + ማጥፊያ - New event - New Event @@ -976,90 +790,79 @@ JobTypeListView - + export + + + + import ICS file + + + You are deleting an event type. - All events under this type will be deleted and cannot be recovered. - Cancel button - + መሰረዣ - Delete button - + ማጥፊያ QObject - Account settings - Account - Select items to be synced - Events - - General settings - Sync interval - - Manage calendar - Calendar account - - Event types - General - + ባጠቃላይ - First day of week - Time @@ -1067,64 +870,60 @@ Return - Today Return - ዛሬ + ዛሬ Return Today - - - Today Return Today - ዛሬ + ዛሬ ScheduleTypeEditDlg - New event type - Edit event type - - Name: + Import ICS file - + Name: + ስም: + + Color: - + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + Cancel button - + መሰረዣ - Save button - + ማስቀመጫ - The name can not only contain whitespaces - Enter a name please @@ -1132,58 +931,48 @@ Shortcut - Help - + እርዳታ - Delete event - Copy - + ኮፒ - Cut - + መቁረጫ - Paste - + መለጠፊያ - Delete - + ማጥፊያ - Select all - + ሁሉንም መምረጫ SidebarCalendarWidget - Y - + Y - M - + M TimeJumpDialog - Go button @@ -1192,40 +981,29 @@ UserloginWidget - Sign In button - + መግቢያ - Sign Out button - + መውጫ YearFrame - Y - + Y today - - - - - - - - Today Today - ዛሬ + ዛሬ diff --git a/translations/dde-calendar-service_ar.ts b/translations/dde-calendar-service_ar.ts index 3985bde9..06154595 100644 --- a/translations/dde-calendar-service_ar.ts +++ b/translations/dde-calendar-service_ar.ts @@ -4,22 +4,18 @@ AccountItem - Sync successful - Network error - Server exception - Storage full @@ -27,12 +23,10 @@ AccountManager - Local account - Event types @@ -40,80 +34,66 @@ CColorPickerWidget - Color - + لون - Cancel button - + إلغاء - Save button - + حفظ CDayMonthView - Monday - + الاثنين - Tuesday - + الثلاثاء - Wednesday - + الأربعاء - Thursday - + الخميس - Friday - + الجمعة - Saturday - + السبت - Sunday - + الأحد CDayWindow - Y - + السنة - M - + الشهر - D - + اليوم - Lunar @@ -121,70 +101,60 @@ CGraphicsView - New Event - + حدث جديد CMonthScheduleNumItem - %1 more - + 1% أكثر CMonthView - New event - + حدث جديد - New Event - + حدث جديد CMonthWindow - Y - + السنة CMyScheduleView - My Event - + الحدث الخاص بي - OK button - + موافق - Delete button - + حذف - Edit button - + تحرير CPushButton - New event type @@ -192,520 +162,417 @@ CScheduleDlg - - - New Event - + لا أحداث - Edit Event - + تعديل الأحداث - End time must be greater than start time - + يجب أن يكون وقت الانتهاء أكبر من وقت البدء - OK button - + حسنا - - - - - - Never - + أبدا - At time of event - + في وقت الحدث - 15 minutes before - + 15 دقيقة قبل - 30 minutes before - + 30 دقيقة قبل - 1 hour before - + 1 ساعة قبل - - 1 day before - + 1 يوم قبل - - 2 days before - + “2“يومين قبل - - 1 week before - + 1 أسبوع قبل - On start day (9:00 AM) - + في يوم البَدْء (9:00 صباحا) - - - - time(s) - + الوقت(ج) - Enter a name please - The name can not only contain whitespaces - - Type: - + النوع: - - Description: - + الوصف: - - All Day: - + طوال اليوم: - - Starts: - + يبدأ: - - Ends: - + ينتهي: - - Remind Me: - + ذكرني: - - Repeat: - + تكرار - - End Repeat: - + نهاية التكرار - Calendar account: - Calendar account - Type - + النوع - Description - + الوصف - All Day - + طوال اليوم - Time: - Time - Solar - Lunar - Starts - + يبدأ - Ends - + ينتهي - Remind Me - + ذكرني - Repeat - + تكرار - - Daily - + يوميا - - Weekdays - + أيام الأسبوع - - Weekly - + أسبوعيا - - - Monthly - + شهريا - - - Yearly - + سنويا - End Repeat - + نهاية التكرار - After - + بعد - On - + تشغيل - Cancel button - + إلغاء - Save button - + حفظ CScheduleOperation - All occurrences of a repeating event must have the same all-day status. - + يجب أن يكون لجميع حالات تكرار الحدث نفس الوضع طوال اليوم. - - Do you want to change all occurrences? - + هل تريد تغيير كل الأحداث؟ - - - - - - - Cancel button - + إلغاء - - Change All - + تغيير الكل - You are changing the repeating rule of this event. - + أنت تغير قاعدة التكرار لهذا الحدث. - - - You are deleting an event. - + أنت تقوم بحذف حدث. - Are you sure you want to delete this event? - + هل أنت متأكد من أنك تريد حذف هذا الحدث؟ - Delete button - + حذف - Do you want to delete all occurrences of this event, or only the selected occurrence? - + هل تريد حذف جميع حالات هذا الحدث، أو فقط الأحداث المحددة؟ - Delete All - + حذف الكل - - Delete Only This Event - + حذف هذا الحدث فقط - Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + هل تريد حذف هذا وجميع الحالات المستقبلية لهذا الحدث، أو فقط الأحداث المحددة؟ - Delete All Future Events - + حذف جميع الأحداث المستقبلية - - You are changing a repeating event. - + أنت تقوم بتغيير حدث متكرر. - Do you want to change only this occurrence of the event, or all occurrences? - + هل تريد تغيير هذا الحدث فقط، أو كل الأحداث؟ - All - + الجميع - - Only This Event - + هذا الحدث فقط - Do you want to change only this occurrence of the event, or this and all future occurrences? - + هل تريد تغيير هذا الحدث فقط، أو هذا وكل الأحداث المستقبلية؟ - All Future Events - + كل الأحداث المستقبلية - You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - OK button - + موافق CScheduleSearchDateItem - Y - + سنة - M - + شهر - D - + يوم CScheduleSearchItem - Edit - + تعديل - Delete - + حذف - All Day - + طوال اليوم CScheduleSearchView - No search results - + لا توجد نتائج بحث CScheduleView - ALL DAY - + طوال اليوم CSettingDialog - - Sunday + import ICS file - - Monday - + Manual + يدوي - - 24-hour clock + 15 mins - - 12-hour clock + 30 mins - - Manual - + 1 hour + 1 ساعة - - 15 mins + 24 hours - - 30 mins + Sync Now - - 1 hour + Last sync - - 24 hours + Monday + الاثنين + + + Tuesday + الثلاثاء + + + Wednesday + الأربعاء + + + Thursday + الخميس + + + Friday + الجمعة + + + Saturday + السبت + + + Sunday + الأحد + + + 12-hour clock - - Sync Now + 24-hour clock - - Last sync + Please go to the <a href='/'>Control Center</a> to change settings CTimeEdit - (%1 mins) - (%1 hour) - (%1 hours) @@ -713,28 +580,22 @@ CTitleWidget - Y - + سنة - M - + شهر - W - + أسبوع - D - + يوم - - Search events and festivals @@ -742,118 +603,97 @@ CWeekWidget - Sun - + الأحد - Mon - + الاثنين - Tue - + الثلاثاء - Wed - + الأربعاء - Thu - + الخميس - Fri - + الجمعة - Sat - + السبت CWeekWindow - Week - + الأسبوع - Y - + السنة CYearScheduleView - - All Day - + طوال اليوم - No event - + لا يوجد حدث CYearWindow - Y - + السنة CalendarWindow - Calendar - + التقويم - Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + التقويم هو برنامج لعرض التواريخ وللتخطيط الذكي لجميع الأشياء في الحياة Calendarmainwindow - Calendar - + التقويم - Manage - Privacy Policy - Syncing... - + جاري المزامنة... - Sync successful - Sync failed, please try later @@ -861,205 +701,168 @@ CenterWidget - All Day - + طوال اليوم DAccountDataBase - Work - + عمل - Life - + حياة - Other - + أخرى DAlarmManager - - - - Close button - إغلاق + إغلاق - One day before start - يوم قبل البداية + يوم قبل البداية - Remind me tomorrow - ذكرني غدا + ذكرني غدا - Remind me later - ذكرني لاحقا + ذكرني لاحقا - 15 mins later - 1 hour later - 4 hours later - - - Tomorrow - غدا + غدا - Schedule Reminder - تذكير بالبرنامج + تذكير بالبرنامج - - %1 to %2 - - Today - اليوم + اليوم DragInfoGraphicsView - Edit - + تحرير - Delete - + حذف - New event - + حدث جديد - New Event - + حدث جديد JobTypeListView - + export + + + + import ICS file + + + You are deleting an event type. - All events under this type will be deleted and cannot be recovered. - Cancel button - + إلغاء - Delete button - + حذف QObject - Account settings - Account - + حساب - Select items to be synced - Events - - General settings - Sync interval - - Manage calendar - Calendar account - - Event types - General - + عام - First day of week - Time @@ -1067,64 +870,60 @@ Return - Today Return - اليوم + اليوم Return Today - - - Today Return Today - اليوم + اليوم ScheduleTypeEditDlg - New event type - Edit event type - - Name: + Import ICS file - + Name: + الاسم : + + Color: - + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + Cancel button - + إلغاء - Save button - + حفظ - The name can not only contain whitespaces - Enter a name please @@ -1132,58 +931,48 @@ Shortcut - Help - + مساعدة - Delete event - + حذف حدث - Copy - + نسخ - Cut - + قص - Paste - + لصق - Delete - + حذف - Select all - + تحديد الكل SidebarCalendarWidget - Y - + السنة - M - + الشهر TimeJumpDialog - Go button @@ -1192,40 +981,29 @@ UserloginWidget - Sign In button - + تسجيل الدخول - Sign Out button - + تسجيل الخروج YearFrame - Y - + السنة today - - - - - - - - Today Today - اليوم + اليوم diff --git a/translations/dde-calendar-service_az.ts b/translations/dde-calendar-service_az.ts index 4dfb773f..803a15ed 100644 --- a/translations/dde-calendar-service_az.ts +++ b/translations/dde-calendar-service_az.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Uğurlu eyniləşdirmə Network error - + Şəbəkə xətası Server exception - + Server istisnası Storage full - + Yaddaş dolub AccountManager Local account - + Yerli hesab Event types - + Tədbirin növləri CColorPickerWidget Color - + Rəng Cancel button - + İmtina Save button - + Saxlayın CDayMonthView Monday - + Bazar ertəsi Tuesday - + Çərşənbə axşamı Wednesday - + Çərşənbə Thursday - + Cümə axşamı Friday - + Cümə Saturday - + Şənbə Sunday - + Bazar CDayWindow Y - + İl M - + Ay D - + G Lunar - + Ay CGraphicsView New Event - + Yeni tədbir CMonthScheduleNumItem %1 more - + %1 daha çox CMonthView New event - + Yeni tədbir New Event - + Yeni tədbir CMonthWindow Y - + İl CMyScheduleView My Event - + Mənim tədbirim OK button - + OLDU Delete button - + Silin Edit button - + Düzəliş edin CPushButton New event type - + Yeni tədbir növü CScheduleDlg New Event - + Yeni tədbir Edit Event - + Tədbirə düzəliş etmək End time must be greater than start time - + Bitmə tarixi başlama tarixindən böyük olmalıdır OK button - + OK Never - + Heç vaxt At time of event - + Tədbir zamanı 15 minutes before - + 15 dəqiqə əvvəl 30 minutes before - + 30 dəqiqə əvvəl 1 hour before - + 1 saat əvvəl 1 day before - + 1 gün əvvəl 2 days before - + 2 gün əvvəl 1 week before - + 1 həftə əvvəl On start day (9:00 AM) - + Başlanğıc günü (9:00) time(s) - + vaxt(lar) Enter a name please - + Lütfən adı daxil edin The name can not only contain whitespaces - + Ad təkcə ara boşluqlarından ibarət ola bilməz Type: - + Növ: Description: - + Təsviri: All Day: - + Bütün gün: Starts: - + Başlayır: Ends: - + Başa çatır: Remind Me: - + Mənə xatırlat: Repeat: - + Təkrar: End Repeat: - + Təkrarın sonu: Calendar account: - + Təqvim hesabı: Calendar account - + Təqvim hesabı Type - + Növ Description - + Təsviri All Day - + Bütün gün Time: - + Vaxt: Time - + Vaxt Solar - + Günəş Lunar - + Ay Starts - + Başlayır Ends - + Başa çatır Remind Me - + Mənə xatırlat Repeat - + Təkrar Daily - + Hər gün Weekdays - + Həftənin günləri Weekly - + Həftə Monthly - + Ay Yearly - + İl End Repeat - + Təkrarın sonu After - + Sonra On - + Açıq Cancel button - + İmtina Save button - + Saxlayın CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Təkrarlanan tədbirlərin bütün hadisələri gün boyu eyni statusa malik olmalıdır. Do you want to change all occurrences? - + Bütün hadisələrə dəyişmək istəyrisiniz? Cancel button - + İmtina Change All - + Hamısını dəyişmək You are changing the repeating rule of this event. - + Siz bu tədbirin təkrarlanma qaydasını dəyişirsiniz. You are deleting an event. - + Siz tədbiri silirsiniz. Are you sure you want to delete this event? - + Bu tədbiri silmək istədiyinizə əminsiniz? Delete button - + Silmək Do you want to delete all occurrences of this event, or only the selected occurrence? - + Siz bu tədbirin bütün hadisələrini, yoxsa yalnız seçilmiş hadisəsini silmək istəyirsiniz? Delete All - + Hamısını silin Delete Only This Event - + Yalnız bu tədbiri silin Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Siz bu tədbirin bütün gələcək hadisələrini, yoxsa yalnız seçilmiş hadisəsini silmək istəyirsiniz? Delete All Future Events - + Bütün gələcək tədbirləri silin You are changing a repeating event. - + Siz təkrarlanan tədbiri dəyişirsiniz. Do you want to change only this occurrence of the event, or all occurrences? - + Siz bu tədbirin yalnız bu hadisəsini, yoxsa bütün hadisələrini silmək istəyirsiniz? All - + Hamısını Only This Event - + Yalnız bu tədbiri Do you want to change only this occurrence of the event, or this and all future occurrences? - + Siz tədbirin yalnız bu hadisəsini yoxsa, bu və bütün gələcək hadisələrini silmək istəyirsiniz? All Future Events - + Bütün gələcək tədbirlər You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Siz uzun ay seşmisiniz və xatırlatma ay təqvimi qaydalarına uyğun olacaq. OK button - + OLDU CScheduleSearchDateItem Y - + İl M - + Ay D - + G CScheduleSearchItem Edit - + Düzəliş edin Delete - + Silin All Day - + Bütün gün CScheduleSearchView No search results - + Axtarış nəticəsiz oldu CScheduleView ALL DAY - + BÜTÜN GÜN CSettingDialog - Sunday - + Manual + Əl ilə - Monday - + 15 mins + 15 dəqiqə - 24-hour clock - + 30 mins + 30 dəqiqə - 12-hour clock - + 1 hour + 1 saat - Manual - + 24 hours + 24 saat - 15 mins - + Sync Now + İndi eyniləşdirin - 30 mins - + Last sync + Sonuncu eyniləşmə - 1 hour - + Monday + Bazar ertəsi - 24 hours - + Sunday + Bazar - Sync Now - + 12-hour clock + 12 saat vaxt formatı - Last sync - + 24-hour clock + 24 saat vaxt formatı + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 dəqiqə) (%1 hour) - + (%1 saat) (%1 hours) - + (%1 saat) CTitleWidget Y - + İl M - + Ay W - + H D - + G Search events and festivals - + Tədbirləri və festivalları axtarın CWeekWidget Sun - + Baz Mon - + B.er Tue - + Ç.ax Wed - + Çər Thu - + C.ax Fri - + Cüm Sat - + Şnb CWeekWindow Week - + Həftə Y - + İl CYearScheduleView All Day - + Bütün gün No event - + Tədbir yoxdur CYearWindow Y - + İl CalendarWindow Calendar - + Təqvim Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Təqvim tarixləri göstərən və həmçinin gündəlik həyatınızdakı gələcək işlərinizi planlamaq üçün bir gündəlikdir. Calendarmainwindow Calendar - + Təqvim Manage - + İdarə edin Privacy Policy - + Məxfilik Siyasəti Syncing... - + Eyniləşdirilir... Sync successful - + Eyniləşdirmə uğurlu oldu Sync failed, please try later - + Eyniləşdirmə alınmadı, lütfən yenidən cəhd edin CenterWidget All Day - + Bütün gün @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Düzəlt Delete - + Sil New event - + Yeni tədbir New Event - + Yeni tədbir JobTypeListView You are deleting an event type. - + Siz tədbir növünü silirsiniz. All events under this type will be deleted and cannot be recovered. - + Bu qəbildən bütün tədbirlər silinəcəklər və bərpa oluna bilməzlər. Cancel button - + İmtina Delete button - + Silin QObject Account settings - + Hesab ayarları Account - + İstifadəçi hesabı Select items to be synced - + Eyniləşdiriləcək elementləri seçin Events - + Tədbirlər General settings - + Ümumi ayarlar Sync interval - + Eyniləşdirmə aralığı Manage calendar - + Təqvimi idarə edin Calendar account - + Təqvim hesabı Event types - + Tədbirin növləri General - + Ümumi First day of week - + Həftənin ilk günü Time - + Vaxt @@ -836,7 +854,7 @@ Today Return - Bu gün + Bu gün @@ -844,86 +862,86 @@ Today Return Today - Bu gün + Bu gün ScheduleTypeEditDlg New event type - + Yeni tədbir növü Edit event type - + Tədbir növünü dəyişin Name: - + Ad: Color: - + Rəng: Cancel button - + İmtina Save button - + Saxla The name can not only contain whitespaces - + Ad təkcə ara boşluqlarından ibarət ola bilməz Enter a name please - + Lütfən adı daxil edin Shortcut Help - + Kömək Delete event - + Tədbiri silmək Copy - + Kopyala Cut - + Kəsmək Paste - + Əlavə et Delete - + Sil Select all - + Hamısını seçmək SidebarCalendarWidget Y - + İl M - + Ay @@ -931,7 +949,7 @@ Go button - + Keçin @@ -939,19 +957,19 @@ Sign In button - + Hesaba giriş Sign Out button - + Hesabdan çıxış YearFrame Y - + İl @@ -959,7 +977,7 @@ Today Today - Bu gün + Bu gün - + \ No newline at end of file diff --git a/translations/dde-calendar-service_bo.ts b/translations/dde-calendar-service_bo.ts index a8c13f4c..af329b1c 100644 --- a/translations/dde-calendar-service_bo.ts +++ b/translations/dde-calendar-service_bo.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + མཉམ་བགྲོད་ལེགས་གྲུབ། Network error - + དྲ་རྒྱ་ནོར་བ། Server exception - + ཞབས་ཞུ་འཕྲུལ་ཆས་རྒྱུན་འགལ། Storage full - + ཉར་གསོག་གང་བ། AccountManager Local account - + རང་སའི་རྩའི་ཁྲ། Event types - + ཉིན་རེའི་ལས་རིམ་རིགས་གྲས། CColorPickerWidget Color - + ཚོན་མདོག Cancel button - + འདོར་བ། Save button - + ཉར་གསོག་ CDayMonthView Monday - + གཟའ་ཟླ་བ། Tuesday - + གཟའ་མིག་དམར། Wednesday - + གཟའ་ལྷག་པ། Thursday - + གཟའ་ཕུར་བུ། Friday - + གཟའ་པ་སངས། Saturday - + གཟའ་སྤེན་པ། Sunday - + གཟའ་ཉི་མ། CDayWindow Y - + ལོ། M - + ཟླ། D - + ཚེས། Lunar - + ལུགས་རྙིང་ལོ་ཐོ། CGraphicsView New Event - + ལས་རིམ་གསར་པ། CMonthScheduleNumItem %1 more - + ད་དུང་%1ཡོད། CMonthView New event - + ལས་རིམ་གསར་པ། New Event - + ལས་རིམ་གསར་པ། CMonthWindow Y - + ལོ། CMyScheduleView My Event - + ངའི་ལས་རིམ། OK button - + གཏན་ཁེལ། Delete button - + སུབ་པ། Edit button - + རྩོམ་སྒྲིག CPushButton New event type - + གསར་སྣོན་ཉིན་རེའི་ལས་རིམ་རིགས། CScheduleDlg New Event - + ལས་རིམ་གསར་པ། Edit Event - + ལས་རིམ་རྩོམ་སྒྲིག End time must be greater than start time - + མཇུག་འགྲིལ་བའི་དུས་ཚོད་འགོ་འཛུགས་དུས་ཚོད་ལས་འཕྱི་བ་དགོས། OK button - + གཏན་ཁེལ། Never - + ནམ་ཡང་མིན། At time of event - + ལས་རིམ་འགོ་འཛུགས་དུས། 15 minutes before - + སྐར་མ་15སྔོན་ལ། 30 minutes before - + སྐར་མ་30སྔོན་ལ། 1 hour before - + ཆུ་ཚོད་1སྔོན་ལ། 1 day before - + ཉིན་1སྔོན་ལ། 2 days before - + ཉིན་2སྔོན་ལ། 1 week before - + གཟའ་འཁོར་1སྔོན་ལ། On start day (9:00 AM) - + ལས་རིམ་འགོ་ཚུགས་པའི་ཉིན།(9:00སྔ་དྲོའི་ཆུ་ཚོད།) time(s) - + ཐེངས་གྲངས།(ཐེངས) Enter a name please - + མིང་སྟོང་པ་ཡིན་མི་རུང་། The name can not only contain whitespaces - + མིང་ཚང་མ་སྟོང་པ་ཡིན་མི་རུང་བས། བཟོ་བཅོས་བྱེད་རོགས། Type: - + རིགས་གྲས། Description: - + ནང་དོན། All Day: - + ཉིན་གང་། Starts: - + འགོ་འཛུགས་དུས་ཚོད། Ends: - + མཇུག་སྒྲིལ་དུས་ཚོད། Remind Me: - + དྲན་སྐུལ། Repeat: - + བསྐྱར་ཟློས། End Repeat: - + བསྐྱར་ཟློས་མཇུག་འགྲིལ་བ། Calendar account: - + ལོ་ཐོའི་རྩིས་ཁྲ། Calendar account - + ལོ་ཐོའི་རྩིས་ཁྲ། Type - + རིགས་གྲས། Description - + ནང་དོན། All Day - + ཉིན་གང་། Time: - + དུས་ཚོད། Time - + ཐོ་འཇུག་པའི་དུས་ཚོད། Solar - + སྤྱི་ལོ། Lunar - + ལུགས་རྙིང་ལོ་ཐོ། Starts - + འགོ་འཛུགས་དུས་ཚོད། Ends - + མཇུག་སྒྲིལ་དུས་ཚོད། Remind Me - + དྲན་སྐུལ། Repeat - + བསྐྲར་ཟློས། Daily - + ཉིན་རེ། Weekdays - + ལས་ཀའི་ཉིན་གྲངས། Weekly - + བདུན་རེ། Monthly - + ཟླ་རེ། Yearly - + ལོ་རེ། End Repeat - + བསྐྱར་ཟློས་མཇུག་འགྲིལ་བ། After - + རྗེས་ལ། On - + ལ། Cancel button - + ཕྱིར་འཐེན། Save button - + ཉར་གསོག་ CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + བསྐྱར་ཟློས་ཀྱི་ཉིན་རེའི་ལས་རིམ་གྱི་བསྐྱར་ཟློས་ཚང་མར་ཉིན་ཧྲིལ་པོའི་རྣམ་པ་གཅིག་མཚུངས་ཡོད་དགོས། Do you want to change all occurrences? - + ཁྱོད་ཀྱིས་བསྐྱར་ཟློས་ཚང་མ་བཟོ་བཅོས་བྱེད་རྒྱུ་ཡིན་ནམ། Cancel button - + ཕྱིར་འཐེན། Change All - + ཚང་མ་བཟོ་བཅོས་བྱེད། You are changing the repeating rule of this event. - + ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་གྱི་བསྐྱར་ཟློས་ཀྱི་སྒྲིག་སྲོལ་བཟོ་བཅོས་བྱེད་བཞིན་ཡོད། You are deleting an event. - + ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་བསུབ་བཞིན་ཡོད། Are you sure you want to delete this event? - + ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་འདི་བསུབ་རྒྱུ་ཡིན་པ་གཏན་འཁེལ་ལམ། Delete button - + སུབ་པ། Do you want to delete all occurrences of this event, or only the selected occurrence? - + ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་འདིའི་བསྐྱར་ཟློས་ཚང་མ་བསུབ་རྒྱུ་ཡིན་ནམ། ཡང་ན་བདམས་ཡོད་པའི་བསྐྱར་ཟློས་དག་བསུབ་རྒྱུ་ཡིན། Delete All - + ཚང་མ་སུབ་པ། Delete Only This Event - + ཉིན་རེའི་ལས་རིམ་འདི་སུབ་པ། Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་འདིའི་བསྐྱར་ཟློས་འདི་དང་མ་འོངས་ཀྱི་བསྐྱར་ཟློས་ཚང་མ་བསུབ་རྒྱུ་ཡིན་ནམ། ཡང་ན་བདམས་ཡོད་པའི་བསྐྱར་ཟློས་དག་བསུབ་རྒྱུ་ཡིན། Delete All Future Events - + མ་འོངས་ཀྱི་ཉིན་རེའི་ལས་རིམ་ཚང་མ་སུབ་པ། You are changing a repeating event. - + ཁྱོད་ཀྱིས་བསྐྱར་ཟློས་ཀྱི་ཉིན་རེའི་ལས་རིམ་དག་བཟོ་བཅོས་བྱེད་བཞིན་ཡོད། Do you want to change only this occurrence of the event, or all occurrences? - + ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་འདིའི་བསྐྱར་ཟློས་འདི་བཟོ་བཅོས་བྱེད་རྒྱུ་ཡིན་ནམ། ཡང་ན་དེའི་བསྐྱར་ཟློས་ཚང་མ་བཟོ་བཅོས་བྱེད་རྒྱུ་ཡིན། All - + ཉིན་རེའི་ལས་རིམ་ཆ་ཚང་། Only This Event - + ཉིན་རེའི་ལས་རིམ་འདི་ཉིད། Do you want to change only this occurrence of the event, or this and all future occurrences? - + ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་འདིའི་བསྐྱར་ཟློས་འདི་དང་མ་འོངས་ཀྱི་བསྐྱར་ཟློས་ཚང་མ་བཟོ་བཅོས་བྱེད་རྒྱུ་ཡིན་ནམ། ཡང་ན་བདམས་ཡོད་པའི་བསྐྱར་ཟློས་དག་བཟོ་བཅོས་བྱེད་རྒྱུ་ཡིན། All Future Events - + མ་འོངས་ཀྱི་ཉིན་རེའི་ལས་རིམ་ཚང་མ། You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + ཁྱོད་ཀྱིས་བདམས་པ་དེ་ཟླ་བཤོལ་ཡིན་པས། ལུགས་རྙིང་ལོ་ཐོའི་སྒྲིག་སྲོལ་ལྟར་དྲན་སྐུལ་བྱེད་སྲིད། OK button - + གཏན་ཁེལ། CScheduleSearchDateItem Y - + ལོ། M - + ཟླ། D - + ཚེས། CScheduleSearchItem Edit - + རྩོམ་སྒྲིག Delete - + སུབ་པ། All Day - + ཉིན་གང་། CScheduleSearchView No search results - + འཚོལ་ཞིབ་བྱས་འབྲས་མེད། CScheduleView ALL DAY - + ཉིན་གང་། CSettingDialog - Sunday - + Manual + ལག་ཐབས། - Monday - + 15 mins + སྐར་མ་15རེ། - 24-hour clock - + 30 mins + སྐར་མ་30རེ། - 12-hour clock - + 1 hour + ཆུ་ཚོད་1རེ། - Manual - + 24 hours + ཆུ་ཚོད་24རེ། - 15 mins - + Sync Now + ལམ་སེང་མཉམ་བགྲོད། - 30 mins - + Last sync + ཉེ་དུས་ཀྱི་མཉམ་བགྲོད་དུས་ཚོད། - 1 hour - + Monday + གཟའ་ཟླ་བ། - 24 hours - + Sunday + གཟའ་ཉི་མ། - Sync Now - + 12-hour clock + ཆུ་ཚོད་12ཀྱི་ལུགས། - Last sync - + 24-hour clock + ཆུ་ཚོད་24ཡི་ལུགས། + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1སྐར་མ།) (%1 hour) - + (%1ཆུ་ཚོད།) (%1 hours) - + (%1ཆུ་ཚོད།) CTitleWidget Y - + ལོ། M - + ཟླ། W - + གཟའ། D - + ཚེས། Search events and festivals - + ཉིན་རེའི་ལས་རིམ་དང་དུས་ཆེན་འཚོལ་ཞིབ། CWeekWidget Sun - + ཉི་མ། Mon - + ཟླ་བ། Tue - + མིག་དམར། Wed - + ལྷག་པ། Thu - + ཕུར་བུ། Fri - + པ་སངས། Sat - + སྤེན་པ། CWeekWindow Week - + གཟའ་འཁོར། Y - + ལོ། CYearScheduleView All Day - + ཉིན་གང་། No event - + ལས་རིམ་མེད། CYearWindow Y - + ལོ། CalendarWindow Calendar - + ལོ་ཐོ། Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + ལོ་ཐོ་ནི་ཚེས་གྲངས་བལྟ་བ་དང་ལས་རིམ་དོ་དམ་བྱེད་པའི་ཡོ་བྱད་ཆུང་ཆུང་ཞིག་རེད། Calendarmainwindow Calendar - + ལོ་ཐོ། Manage - + དོ་དམ། Privacy Policy - + གསང་དོན་སྲིད་ཇུས། Syncing... - + མཉམ་བགྲོད་བྱེད་བཞིན་པ། Sync successful - + མཉམ་བགྲོད་ལེགས་གྲུབ། Sync failed, please try later - + མཉམ་བགྲོད་བྱེད་མ་ཐུབ་པས། ཏོག་ཙམ་ནས་ཡང་བསྐྱར་ཚོད་ལྟ་བྱོས། CenterWidget All Day - + ཉིན་གང་། @@ -713,15 +731,15 @@ 15 mins later - + སྐར་མ་15རྗེས། 1 hour later - + ཆུ་ཚོད་1རྗེས། 4 hours later - + ཆུ་ཚོད་4རྗེས། Tomorrow @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + རྩོམ་སྒྲིག Delete - + སུབ་པ། New event - + ལས་རིམ་གསར་པ། New Event - + ལས་རིམ་གསར་པ། JobTypeListView You are deleting an event type. - + ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་སུབ་བཞིན་ཡོད། All events under this type will be deleted and cannot be recovered. - + ཉིན་རེའི་ལས་རིམ་འདིའི་འོག་གི་ཉིན་རེའི་ལས་རིམ་ཚང་མ་སུབ་ངེས་པ་མ་ཟད་སླར་གསོ་བྱ་ཐབས་མེད། Cancel button - + འདོར་བ། Delete button - + སུབ་པ། QObject Account settings - + རྩིས་ཐོ་སྒྲིག་འགོད། Account - + རྩིས་ཁྲ། Select items to be synced - + ཁྱེད་ཀྱི་མཉམ་བགྲོད་ཚན་པ་སྒྲིག་འགོད། Events - + ཉིན་རེའི་ལས་རིམ། General settings - + ཀུན་སྤྱོད་སྒྲིག་འགོད། Sync interval - + མཉམ་བགྲོད་བྱུང་ཚད། Manage calendar - + ལོ་ཐོ་དོ་དམ། Calendar account - + ལོ་ཐོའི་རྩིས་ཁྲ། Event types - + ཉིན་རེའི་ལས་རིམ་རིགས་གྲས། General - + ཀུན་སྤྱོད། First day of week - + གཟའ་འཁོར་གཅིག་གི་ཉིན་དང་པོ། Time - + ཐོ་འཇུག་པའི་དུས་ཚོད། @@ -836,7 +854,7 @@ Today Return - དེ་རིང་། + དེ་རིང་། @@ -844,86 +862,86 @@ Today Return Today - དེ་རིང་། + དེ་རིང་། ScheduleTypeEditDlg New event type - + གསར་སྣོན་ཉིན་རེའི་ལས་རིམ་རིགས། Edit event type - + ཉིན་རེའི་ལས་རིམ་རིགས་གྲས་རྩོམ་སྒྲིག Name: - + མིང་། Color: - + ཚོན་མདོག Cancel button - + འདོར་བ། Save button - + ཉར་གསོག་ The name can not only contain whitespaces - + མིང་ཚང་མ་སྟོང་པ་ཡིན་མི་རུང་བས། བཟོ་བཅོས་བྱེད་རོགས། Enter a name please - + མིང་སྟོང་པ་ཡིན་མི་རུང་། Shortcut Help - + རོགས་རམ། Delete event - + ལས་རིམ་སུབ་པ། Copy - + མཁོ་ཕབ། Cut - + དྲས་གཏུབ། Paste - + སྦྱར་བ། Delete - + སུབ་པ། Select all - + ཡོངས་འདེམས། SidebarCalendarWidget Y - + ལོ། M - + ཟླ། @@ -931,7 +949,7 @@ Go button - + མཆོང་སྒྱུར། @@ -939,19 +957,19 @@ Sign In button - + ཐོ་འཇུག Sign Out button - + ཐོ་འབུད། YearFrame Y - + ལོ། @@ -959,7 +977,7 @@ Today Today - དེ་རིང་། + དེ་རིང་། - + \ No newline at end of file diff --git a/translations/dde-calendar-service_ca.ts b/translations/dde-calendar-service_ca.ts index 48651c7a..4286fd05 100644 --- a/translations/dde-calendar-service_ca.ts +++ b/translations/dde-calendar-service_ca.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Sincronització correcta Network error - + Error de xarxa Server exception - + Excepció del servidor Storage full - + Emmagatzematge ple AccountManager Local account - + Compte local Event types - + Tipus d'esdeveniment CColorPickerWidget Color - + Color Cancel button - + Cancel·la Save button - + Desa-ho CDayMonthView Monday - + Dilluns Tuesday - + Dimarts Wednesday - + Dimecres Thursday - + Dijous Friday - + Divendres Saturday - + Dissabte Sunday - + Diumenge CDayWindow Y - + any M - + mes D - + D Lunar - + Lunar CGraphicsView New Event - + Esdeveniment nou CMonthScheduleNumItem %1 more - + %1 més CMonthView New event - + Nou esdeveniment New Event - + Esdeveniment nou CMonthWindow Y - + any CMyScheduleView My Event - + El meu esdeveniment OK button - + D'acord Delete button - + Elimina Edit button - + Edita CPushButton New event type - + Tipus d'esdeveniment nou CScheduleDlg New Event - + Esdeveniment nou Edit Event - + Edita l'esdeveniment End time must be greater than start time - + L'hora d'acabament ha de ser superior a l'hora d'inici. OK button - + D'acord Never - + Mai At time of event - + Al moment de l'esdeveniment 15 minutes before - + 15 minuts abans 30 minutes before - + 30 minuts abans 1 hour before - + 1 hora abans 1 day before - + 1 dia abans 2 days before - + 2 dies abans 1 week before - + 1 setmana abans On start day (9:00 AM) - + El dia d'inici (9:00) time(s) - + cop/s Enter a name please - + Escriviu un nom, si us plau. The name can not only contain whitespaces - + El nom no només pot contenir espais en blanc. Type: - + Tipus: Description: - + Descripció: All Day: - + Tot el dia: Starts: - + Comença: Ends: - + Acaba: Remind Me: - + Recorda-m'ho: Repeat: - + Repeteix: End Repeat: - + Acaba la repetició: Calendar account: - + Compte del calendari: Calendar account - + Compte del calendari Type - + Tipus Description - + Descripció All Day - + Tot el dia Time: - + Hora: Time - + Hora Solar - + solar Lunar - + lunar Starts - + Comença Ends - + Acaba Remind Me - + Recorda-m'ho Repeat - + Repeteix Daily - + Diàriament Weekdays - + Els dies feiners Weekly - + Setmanalment Monthly - + Mensualment Yearly - + Anualment End Repeat - + Acaba la repetició After - + Després On - + Activat Cancel button - + Cancel·la Save button - + Desa CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Totes les ocurrències d'un esdeveniment repetitiu han de tenir el mateix estat de tot el dia. Do you want to change all occurrences? - + Voleu canviar-ne totes les ocurrències? Cancel button - + Cancel·la Change All - + Canvia-les totes You are changing the repeating rule of this event. - + Canvieu la regla de repetició d'aquest esdeveniment. You are deleting an event. - + Elimineu un esdeveniment. Are you sure you want to delete this event? - + Segur que voleu eliminar aquest esdeveniment? Delete button - + Elimina Do you want to delete all occurrences of this event, or only the selected occurrence? - + Voleu eliminar totes les ocurrències d'aquest esdeveniment o només la seleccionada? Delete All - + Elimina-les totes Delete Only This Event - + Elimina només aquest esdeveniment Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Voleu eliminar aquesta i totes les ocurrències futures d'aquest esdeveniment o només la seleccionada? Delete All Future Events - + Elimina tots els esdeveniments futurs You are changing a repeating event. - + Canvieu un esdeveniment repetitiu. Do you want to change only this occurrence of the event, or all occurrences? - + Voleu canviar només aquesta ocurrència de l'esdeveniment o totes? All - + Totes Only This Event - + Només aquest esdeveniment Do you want to change only this occurrence of the event, or this and all future occurrences? - + Voleu canviar només aquesta ocurrència de l'esdeveniment, o aquesta i totes les ocurrències futures? All Future Events - + Tots els esdeveniments futurs You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Heu seleccionat un mes de traspàs i se us recordarà segons les regles del calendari lunar. OK button - + D'acord CScheduleSearchDateItem Y - + A M - + M D - + D CScheduleSearchItem Edit - + Edita Delete - + Elimina All Day - + Tot el dia CScheduleSearchView No search results - + No hi ha resultats de la cerca. CScheduleView ALL DAY - + TOT EL DIA CSettingDialog - Sunday - + Manual + Manual - Monday - + 15 mins + 15 min - 24-hour clock - + 30 mins + 30 min - 12-hour clock - + 1 hour + 1 hora - Manual - + 24 hours + 24 hores - 15 mins - + Sync Now + Sincronitza ara - 30 mins - + Last sync + Darrera sincronització - 1 hour - + Monday + Dilluns - 24 hours - + Sunday + Diumenge - Sync Now - + 12-hour clock + Rellotge de 12 hores - Last sync - + 24-hour clock + Rellotge de 24 hores + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 min) (%1 hour) - + (%1 hora) (%1 hours) - + (%1 hores) CTitleWidget Y - + any M - + mes W - + setmana D - + dia Search events and festivals - + Cerca esdeveniments i festivals CWeekWidget Sun - + dg. Mon - + dl. Tue - + dt. Wed - + dc. Thu - + dj. Fri - + dv. Sat - + ds. CWeekWindow Week - + Setmana Y - + any CYearScheduleView All Day - + Tot el dia No event - + Cap esdeveniment CYearWindow Y - + any CalendarWindow Calendar - + Calendari Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + El Calendari és una eina per veure dates i també un planificador diari intel·ligent per programar totes les coses de la vida. Calendarmainwindow Calendar - + Calendari Manage - + Gestiona Privacy Policy - + Política de privadesa Syncing... - + Se sincronitza... Sync successful - + Sincronització correcta Sync failed, please try later - + La sincronització ha fallat. Si us plau, proveu-ho més tard. CenterWidget All Day - + Tot el dia @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Edita Delete - + Elimina New event - + Esdeveniment nou New Event - + Esdeveniment nou JobTypeListView You are deleting an event type. - + Elimineu un tipus d'esdeveniment. All events under this type will be deleted and cannot be recovered. - + Tots els esdeveniments d'aquest tipus s'eliminaran i no es podran recuperar. Cancel button - + Cancel·la Delete button - + Elimina QObject Account settings - + Paràmetres del compte Account - + Compte Select items to be synced - + Seleccioneu els elements per sincronitzar Events - + Esdeveniments General settings - + Configuració general Sync interval - + Interval de sincronització Manage calendar - + Gestiona el calendari Calendar account - + Compte del calendari Event types - + Tipus d'esdeveniment General - + General First day of week - + Primer dia de la setmana Time - + Hora @@ -836,7 +854,7 @@ Today Return - Avui + Avui @@ -844,86 +862,86 @@ Today Return Today - Avui + Avui ScheduleTypeEditDlg New event type - + Tipus d'esdeveniment nou Edit event type - + Edita el tipus d'esdeveniment Name: - + Nom: Color: - + Color: Cancel button - + Cancel·la Save button - + Desa-ho The name can not only contain whitespaces - + El nom no només pot contenir espais en blanc. Enter a name please - + Escriviu un nom, si us plau. Shortcut Help - + Ajuda Delete event - + Suprimeix l'esdeveniment Copy - + Copia Cut - + Retalla Paste - + Enganxa Delete - + Elimina Select all - + Selecciona-ho tot SidebarCalendarWidget Y - + A M - + M @@ -931,7 +949,7 @@ Go button - + Ves-hi @@ -939,19 +957,19 @@ Sign In button - + Inicia la sessió Sign Out button - + Surt de la sessió YearFrame Y - + any @@ -959,7 +977,7 @@ Today Today - Avui + Avui - + \ No newline at end of file diff --git a/translations/dde-calendar-service_cs.ts b/translations/dde-calendar-service_cs.ts index 712baeee..3f064b6c 100644 --- a/translations/dde-calendar-service_cs.ts +++ b/translations/dde-calendar-service_cs.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Synchronizace byla úspěšná Network error - + Síťová chyba Server exception - + Výjimka na serveru Storage full - + Úložiště je plné AccountManager Local account - + Místní účet Event types - + Typy událostí CColorPickerWidget Color - + Barva Cancel button - + Zrušit Save button - + Uložit CDayMonthView Monday - + pondělí Tuesday - + úterý Wednesday - + středa Thursday - + čtvrtek Friday - + pátek Saturday - + sobota Sunday - + neděle CDayWindow Y - + R M - + M D - + D Lunar - + Měsíční CGraphicsView New Event - + Nová událost CMonthScheduleNumItem %1 more - + %1 další CMonthView New event - + Nová událost New Event - + Nová událost CMonthWindow Y - + R CMyScheduleView My Event - + Moje událost OK button - + OK Delete button - + Smazat Edit button - + Upravit CPushButton New event type - + Nový typ události CScheduleDlg New Event - + Nová událost Edit Event - + Upravit událost End time must be greater than start time - + Je třeba, aby okamžik konce následoval až po okamžiku začátku OK button - + OK Never - + Nikdy At time of event - + V okamžiku události 15 minutes before - + 15 minut před 30 minutes before - + 30 minut před 1 hour before - + 1 hodinu před 1 day before - + 1 den před 2 days before - + 2 dny před 1 week before - + 1 týden před On start day (9:00 AM) - + V den začátku (9:00 dop.) time(s) - + krát Enter a name please - + Zadejte, prosím, název The name can not only contain whitespaces - + Název nemůže obsahovat pouze mezery Type: - + Typ: Description: - + Popis: All Day: - + Celý den: Starts: - + Začíná: Ends: - + Končí: Remind Me: - + Připomenout: Repeat: - + Opakovat: End Repeat: - + Ukončit opakování: Calendar account: - + Kalendářový účet: Calendar account - + Kalendářový účet Type - + Typ Description - + Popis All Day - + Celý den Time: - + Čas: Time - + Čas Solar - + Sluneční Lunar - + Měsíční Starts - + Začíná Ends - + Končí Remind Me - + Připomenout Repeat - + Opakování Daily - + Denně Weekdays - + Všední dny Weekly - + Týdně Monthly - + Měsíčně Yearly - + Ročně End Repeat - + Ukončit opakování After - + Po On - + Zapnuto Cancel button - + Zrušit Save button - + Uložit CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Je třeba, aby všechny výskyty opakující se události měly stejný stav „celý den“. Do you want to change all occurrences? - + Chcete změnit všechny výskyty? Cancel button - + Zrušit Change All - + Změnit vše You are changing the repeating rule of this event. - + Měníte pravidlo opakování této události. You are deleting an event. - + Mažete událost. Are you sure you want to delete this event? - + Opravdu chcete tuto událost smazat? Delete button - + Smazat Do you want to delete all occurrences of this event, or only the selected occurrence? - + Chcete smazat všechny výskyty této události, nebo jen vybraný výskyt? Delete All - + Smazat vše Delete Only This Event - + Smazat jen tuto událost Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Chcete smazat tento a všechny budoucí výskyty této události, nebo jen ten vybraný? Delete All Future Events - + Smazat všechny budoucí události You are changing a repeating event. - + Měníte pravidlo opakující se události. Do you want to change only this occurrence of the event, or all occurrences? - + Chcete změnit jen tento výskyt události, nebo všechny výskyty? All - + Vše Only This Event - + Jen tato událost Do you want to change only this occurrence of the event, or this and all future occurrences? - + Chcete změnit jen tento výskyt události, nebo tento a všechny budoucí výskyty? All Future Events - + Všechny budoucí události You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Vybrali jste přestupný měsíc, a bude vám připomenut podle pravidel měsíčního kalendáře. OK button - + OK CScheduleSearchDateItem Y - + R M - + M D - + D CScheduleSearchItem Edit - + Upravit Delete - + Smazat All Day - + Celý den CScheduleSearchView No search results - + Nic nenalezeno CScheduleView ALL DAY - + CELÝ DEN CSettingDialog - Sunday - + Manual + Příručka - Monday - + 15 mins + 15 minut - 24-hour clock - + 30 mins + 30 minut - 12-hour clock - + 1 hour + 1 hodina - Manual - + 24 hours + 24 hodin - 15 mins - + Sync Now + Seřídit nyní - 30 mins - + Last sync + Naposledy synchronizováno - 1 hour - + Monday + pondělí - 24 hours - + Sunday + neděle - Sync Now - + 12-hour clock + 12 hodinové hodiny - Last sync - + 24-hour clock + 24 hodinové hodiny + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 min.) (%1 hour) - + (%1 hod) (%1 hours) - + (%1 hod.) CTitleWidget Y - + R M - + M W - + T D - + D Search events and festivals - + Vyhledávání událostí a festivalů CWeekWidget Sun - + Ne Mon - + Po Tue - + Út Wed - + St Thu - + Čt Fri - + Sat - + So CWeekWindow Week - + Týden Y - + R CYearScheduleView All Day - + Celý den No event - + Žádná událost CYearWindow Y - + R CalendarWindow Calendar - + Kalendář Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Kalendář slouží k zobrazování datumů a také jako chytrý každodenní plánovač všeho v životě. Calendarmainwindow Calendar - + Kalendář Manage - + Spravovat Privacy Policy - + Zásady ochrany soukromí Syncing... - + Synchronizace… Sync successful - + Synchronizace úspěšná Sync failed, please try later - + Synchronizace se nezdařila, zkuste to, prosím, později CenterWidget All Day - + Celý den @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Upravit Delete - + Smazat New event - + Nová událost New Event - + Nová událost JobTypeListView You are deleting an event type. - + Mažete typ události. All events under this type will be deleted and cannot be recovered. - + Všechny události tohoto typu budou smazány a nelze je obnovit. Cancel button - + Zrušit Delete button - + Smazat QObject Account settings - + Nastavení účtu Account - + Účet Select items to be synced - + Vyberte položky, které mají být synchronizovány Events - + Události General settings - + Obecná nastavení Sync interval - + Seřizovací interval Manage calendar - + Spravovat kalendář Calendar account - + Kalendářový účet Event types - + Typy událostí General - + Obecné First day of week - + První den týdne Time - + Čas @@ -836,7 +854,7 @@ Today Return - Dnes + Dnes @@ -844,86 +862,86 @@ Today Return Today - Dnes + Dnes ScheduleTypeEditDlg New event type - + Nový typ události Edit event type - + Upravit typ události Name: - + Název: Color: - + Barva: Cancel button - + Zrušit Save button - + Uložit The name can not only contain whitespaces - + Název nemůže obsahovat pouze mezery Enter a name please - + Zadejte, prosím, název Shortcut Help - + Nápověda Delete event - + Smazat událost Copy - + Kopírovat Cut - + Vyjmout Paste - + Vložit Delete - + Smazat Select all - + Vybrat vše SidebarCalendarWidget Y - + R M - + M @@ -931,7 +949,7 @@ Go button - + Jde se @@ -939,19 +957,19 @@ Sign In button - + Přihlásit se Sign Out button - + Odhlásit se YearFrame Y - + R @@ -959,7 +977,7 @@ Today Today - Dnes + Dnes - + \ No newline at end of file diff --git a/translations/dde-calendar-service_da.ts b/translations/dde-calendar-service_da.ts index 86484d63..6d9d5e6f 100644 --- a/translations/dde-calendar-service_da.ts +++ b/translations/dde-calendar-service_da.ts @@ -4,22 +4,18 @@ AccountItem - Sync successful - Network error - + Netværksfejl - Server exception - Storage full @@ -27,12 +23,10 @@ AccountManager - Local account - Event types @@ -40,80 +34,66 @@ CColorPickerWidget - Color - + Farve - Cancel button - + Afbryd - Save button - + Gem CDayMonthView - Monday - + Mandag - Tuesday - + Tirsdag - Wednesday - + Onsdag - Thursday - + Torsdag - Friday - + Fredag - Saturday - + Lørdag - Sunday - + Søndag CDayWindow - Y - + Å - M - + M - D - + D - Lunar @@ -121,70 +101,60 @@ CGraphicsView - New Event - + Ny begivenhed CMonthScheduleNumItem - %1 more - + %1 mere CMonthView - New event - + Ny begivenhed - New Event - + Ny begivenhed CMonthWindow - Y - + Å CMyScheduleView - My Event - + Min begivenhed - OK button - + OK - Delete button - + Slet - Edit button - + Rediger CPushButton - New event type @@ -192,520 +162,417 @@ CScheduleDlg - - - New Event - + Ny begivenhed - Edit Event - + Rediger begivenhed - End time must be greater than start time - + Sluttidspunktet skal være større end starttidspunktet - OK button - + OK - - - - - - Never - + Aldrig - At time of event - + På tidspunktet for begivenheden - 15 minutes before - + 15 minutter før - 30 minutes before - + 30 minutter før - 1 hour before - + 1 time før - - 1 day before - + 1 dag før - - 2 days before - + 2 dage før - - 1 week before - + 1 uge før - On start day (9:00 AM) - + På starten af dagen (9:00) - - - - time(s) - + gang(e) - Enter a name please - The name can not only contain whitespaces - - Type: - + Type: - - Description: - + Beskrivelse: - - All Day: - + Hele dagen: - - Starts: - + Starter: - - Ends: - + Slutter: - - Remind Me: - + Påmind mig: - - Repeat: - + Gentag: - - End Repeat: - + Slut gentag: - Calendar account: - Calendar account - Type - + Type - Description - + Beskrivelse - All Day - + Hele dagen - Time: - Time - + Klokkeslæt - Solar - Lunar - Starts - Ends - Remind Me - Repeat - + Gentag - - Daily - + Dagligt - - Weekdays - + Ugedage - - Weekly - + Ugentligt - - - Monthly - + Månedligt - - - Yearly - + Årligt - End Repeat - After - + Efter - On - + Til - Cancel button - + Annuller - Save button - + Gem CScheduleOperation - All occurrences of a repeating event must have the same all-day status. - + Alle forekomster af en begivenhed som gentages skal have den samme hele dagen-status. - - Do you want to change all occurrences? - + Vil du ændre alle forekomster? - - - - - - - Cancel button - + Annuller - - Change All - + Ændr alle - You are changing the repeating rule of this event. - + Du er ved at ændre gentagelsesreglen for begivenheden. - - - You are deleting an event. - + Du er ved at slette en begivenhed. - Are you sure you want to delete this event? - + Er du sikker på, at du vil slette begivenheden? - Delete button - + Slet - Do you want to delete all occurrences of this event, or only the selected occurrence? - + Vil du slette alle forekomster af begivenheden eller kun den valgte forekomst? - Delete All - + Slet alle - - Delete Only This Event - + Slet kun denne begivenhed - Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Vil du slette denne og alle fremtidige forekomster af begivenheden eller kun den valgte forekomst? - Delete All Future Events - + Slet alle fremtidige begivenheder - - You are changing a repeating event. - + Du er ved at ændre en begivenhed som gentages. - Do you want to change only this occurrence of the event, or all occurrences? - + Vil du kun ændre denne forekomst for begivenheden, eller alle forekomster? - All - + Alle - - Only This Event - + Kun denne begivenhed - Do you want to change only this occurrence of the event, or this and all future occurrences? - + Vil du kun ændre denne forekomst for begivenheden, eller denne og alle fremtidige forekomster? - All Future Events - + Alle fremtidige begivenheder - You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - OK button - + OK CScheduleSearchDateItem - Y - + Å - M - + M - D - + D CScheduleSearchItem - Edit - + Rediger - Delete - + Slet - All Day - + Hele dagen CScheduleSearchView - No search results - + Ingen søgeresultater CScheduleView - ALL DAY - + HELE DAGEN CSettingDialog - - Sunday + import ICS file - - Monday - + Manual + Manuel - - 24-hour clock + 15 mins - - 12-hour clock + 30 mins - - Manual - + 1 hour + 1 time - - 15 mins + 24 hours - - 30 mins + Sync Now - - 1 hour + Last sync - - 24 hours + Monday + Mandag + + + Tuesday + Tirsdag + + + Wednesday + Onsdag + + + Thursday + Torsdag + + + Friday + Fredag + + + Saturday + Lørdag + + + Sunday + Søndag + + + 12-hour clock - - Sync Now + 24-hour clock - - Last sync + Please go to the <a href='/'>Control Center</a> to change settings CTimeEdit - (%1 mins) - (%1 hour) - (%1 hours) @@ -713,28 +580,22 @@ CTitleWidget - Y - + Å - M - + M - W - + W - D - + D - - Search events and festivals @@ -742,118 +603,97 @@ CWeekWidget - Sun - + Søn - Mon - + Man - Tue - + Tir - Wed - + Ons - Thu - + Tor - Fri - + Fre - Sat - + Lør CWeekWindow - Week - + Uge - Y - + Å CYearScheduleView - - All Day - + Hele dagen - No event - + Ingen begivenhed CYearWindow - Y - + Å CalendarWindow - Calendar - + Kalender - Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Kalender er et værktøj til at vise datoer, og er også en smart dagsplanlægger til alt i dit liv. Calendarmainwindow - Calendar - + Kalender - Manage - Privacy Policy - + Privatlivspolitik - Syncing... - + Synkroniserer... - Sync successful - Sync failed, please try later @@ -861,270 +701,229 @@ CenterWidget - All Day - + Hele dagen DAccountDataBase - Work - + Arbejde - Life - + Leve - Other - + Andre DAlarmManager - - - - Close button - Luk + Luk - One day before start - En dag før start + En dag før start - Remind me tomorrow - Påmind mig i morgen + Påmind mig i morgen - Remind me later - Påmind mig senere + Påmind mig senere - 15 mins later - 1 hour later - 4 hours later - - - Tomorrow - I morgen + I morgen - Schedule Reminder - Planlæg påmindelse + Planlæg påmindelse - - %1 to %2 - - Today - I dag + I dag DragInfoGraphicsView - Edit - + Rediger - Delete - + Slet - New event - + Ny begivenhed - New Event - + Ny begivenhed JobTypeListView - + export + + + + import ICS file + + + You are deleting an event type. - All events under this type will be deleted and cannot be recovered. - Cancel button - + Afbryd - Delete button - + Slet QObject - Account settings - Account - + Konto - Select items to be synced - Events - - General settings - Sync interval - - Manage calendar - Calendar account - - Event types - General - + Generelt - First day of week - Time - + Klokkeslæt Return - Today Return - I dag + I dag Return Today - - - Today Return Today - I dag + I dag ScheduleTypeEditDlg - New event type - Edit event type - - Name: + Import ICS file - + Name: + Navn: + + Color: - + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + Cancel button - + Afbryd - Save button - + Gem - The name can not only contain whitespaces - Enter a name please @@ -1132,100 +931,79 @@ Shortcut - Help - + Hjælp - Delete event - + Slet begivenhed - Copy - + Kopiér - Cut - + Klip - Paste - + Indsæt - Delete - + Slet - Select all - + Vælg alle SidebarCalendarWidget - Y - + Å - M - + M TimeJumpDialog - Go button - + UserloginWidget - Sign In button - + Log ind - Sign Out button - + Log ud YearFrame - Y - + Å today - - - - - - - - Today Today - I dag + I dag diff --git a/translations/dde-calendar-service_de.ts b/translations/dde-calendar-service_de.ts index 527c7f79..f87c3bfd 100644 --- a/translations/dde-calendar-service_de.ts +++ b/translations/dde-calendar-service_de.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Synchronisierung erfolgreich Network error - + Netzwerkfehler Server exception - + Serverausnahme Storage full - + Speicher voll AccountManager Local account - + Lokales Konto Event types - + Termintypen CColorPickerWidget Color - + Farbe Cancel button - + Abbrechen Save button - + Speichern CDayMonthView Monday - + Montag Tuesday - + Dienstag Wednesday - + Mittwoch Thursday - + Donnerstag Friday - + Freitag Saturday - + Samstag Sunday - + Sonntag CDayWindow Y - + J M - + M D - + T Lunar - + Lunar CGraphicsView New Event - + Neuer Termin CMonthScheduleNumItem %1 more - + %1 weitere CMonthView New event - + Neuer Termin New Event - + Neuer Termin CMonthWindow Y - + J CMyScheduleView My Event - + Mein Termin OK button - + OK Delete button - + Löschen Edit button - + Bearbeiten CPushButton New event type - + Neuer Termintyp CScheduleDlg New Event - + Neuer Termin Edit Event - + Termin bearbeiten End time must be greater than start time - + Endzeit muss größer als Startzeit sein OK button - + OK Never - + Nie At time of event - + Zum Zeitpunkt des Termins 15 minutes before - + 15 Minuten vorher 30 minutes before - + 30 Minuten vorher 1 hour before - + 1 Stunde vorher 1 day before - + 1 Tag vorher 2 days before - + 2 Tage vorher 1 week before - + 1 Woche vorher On start day (9:00 AM) - + Am Starttag (9:00 Uhr) time(s) - + mal Enter a name please - + Bitte einen Namen eingeben The name can not only contain whitespaces - + Der Name darf nicht nur Leerzeichen enthalten Type: - + Typ: Description: - + Beschreibung: All Day: - + Ganztägig: Starts: - + Beginnt: Ends: - + Endet: Remind Me: - + Erinnere mich: Repeat: - + Wiederholung: End Repeat: - + Wiederholung beenden: Calendar account: - + Kalenderkonto: Calendar account - + Kalenderkonto Type - + Typ Description - + Beschreibung All Day - + Ganztägig Time: - + Zeit: Time - + Zeit Solar - + Solar Lunar - + Lunar Starts - + Beginnt Ends - + Endet Remind Me - + Erinnere mich Repeat - + Wiederholung Daily - + Täglich Weekdays - + Wochentage Weekly - + Wöchentlich Monthly - + Monatlich Yearly - + Jährlich End Repeat - + Wiederholung beenden After - + Nach On - + Am Cancel button - + Abbrechen Save button - + Speichern CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Alle Vorkommen eines sich wiederholenden Termins müssen den gleichen Ganztagsstatus haben. Do you want to change all occurrences? - + Möchten Sie alle Vorkommen ändern? Cancel button - + Abbrechen Change All - + Alle ändern You are changing the repeating rule of this event. - + Sie ändern die Wiederholungsregel dieses Termins. You are deleting an event. - + Sie löschen einen Termin. Are you sure you want to delete this event? - + Sind Sie sicher, dass Sie diesen Termin löschen möchten? Delete button - + Löschen Do you want to delete all occurrences of this event, or only the selected occurrence? - + Möchten Sie alle Vorkommen dieses Termins löschen oder nur das ausgewählte Vorkommen? Delete All - + Alle löschen Delete Only This Event - + Nur diesen Termin löschen Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Möchten Sie diesen und alle zukünftigen Vorkommen dieses Termins löschen, oder nur das ausgewählte Vorkommen? Delete All Future Events - + Alle zukünftigen Termine löschen You are changing a repeating event. - + Sie ändern einen sich wiederholenden Termin. Do you want to change only this occurrence of the event, or all occurrences? - + Möchten Sie nur dieses Vorkommen des Termins oder alle Vorkommnisse ändern? All - + Alle Only This Event - + Nur diesen Termin Do you want to change only this occurrence of the event, or this and all future occurrences? - + Möchten Sie nur dieses Ereignis oder dieses und alle zukünftigen Ereignisse ändern? All Future Events - + Alle zukünftigen Termine You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Sie haben einen Schaltmonat ausgewählt und werden nach den Regeln des Mondkalenders daran erinnert. OK button - + OK CScheduleSearchDateItem Y - + J M - + M D - + T CScheduleSearchItem Edit - + Bearbeiten Delete - + Löschen All Day - + Ganztägig CScheduleSearchView No search results - + Keine Suchergebnisse CScheduleView ALL DAY - + GANZTÄGIG CSettingDialog - Sunday - + Manual + Manuell - Monday - + 15 mins + 15 Minuten - 24-hour clock - + 30 mins + 30 Minuten - 12-hour clock - + 1 hour + 1 Stunde - Manual - + 24 hours + 24 Stunden - 15 mins - + Sync Now + Jetzt synchronisieren - 30 mins - + Last sync + Letzte Synchronisierung - 1 hour - + Monday + Montag - 24 hours - + Sunday + Sonntag - Sync Now - + 12-hour clock + 12-Stunden-Uhr - Last sync - + 24-hour clock + 24-Stunden-Uhr + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 Minuten) (%1 hour) - + (%1 Stunde) (%1 hours) - + (%1 Stunden) CTitleWidget Y - + J M - + M W - + W D - + T Search events and festivals - + Termine und Veranstaltungen suchen CWeekWidget Sun - + So Mon - + Mo Tue - + Di Wed - + Mi Thu - + Do Fri - + Fr Sat - + Sa CWeekWindow Week - + Woche Y - + J CYearScheduleView All Day - + Ganztägig No event - + Kein Termin CYearWindow Y - + J CalendarWindow Calendar - + Kalender Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Der Kalender ist ein Werkzeug zum Anzeigen von Terminen und auch ein intelligenter Tagesplaner, um alle Dinge im Leben zu planen. Calendarmainwindow Calendar - + Kalender Manage - + Verwalten Privacy Policy - + Datenschutzerklärung Syncing... - + Wird synchronisiert ... Sync successful - + Synchronisierung erfolgreich Sync failed, please try later - + Synchronisierung fehlgeschlagen, bitte später erneut versuchen CenterWidget All Day - + Ganztägig @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Bearbeiten Delete - + Löschen New event - + Neuer Termin New Event - + Neuer Termin JobTypeListView You are deleting an event type. - + Sie löschen einen Termintyp. All events under this type will be deleted and cannot be recovered. - + Alle Termine dieses Typs werden gelöscht und können nicht wiederhergestellt werden. Cancel button - + Abbrechen Delete button - + Löschen QObject Account settings - + Kontoeinstellungen Account - + Konto Select items to be synced - + Zu synchronisierende Elemente auswählen Events - + Termine General settings - + Allgemeine Einstellungen Sync interval - + Synchronisierungsintervall Manage calendar - + Kalender verwalten Calendar account - + Kalenderkonto Event types - + Termintypen General - + Allgemein First day of week - + Erster Tag der Woche Time - + Zeit @@ -836,7 +854,7 @@ Today Return - Heute + Heute @@ -844,86 +862,86 @@ Today Return Today - Heute + Heute ScheduleTypeEditDlg New event type - + Neuer Termintyp Edit event type - + Termintyp bearbeiten Name: - + Name: Color: - + Farbe: Cancel button - + Abbrechen Save button - + Speichern The name can not only contain whitespaces - + Der Name darf nicht nur Leerzeichen enthalten Enter a name please - + Bitte einen Namen eingeben Shortcut Help - + Hilfe Delete event - + Termin löschen Copy - + Kopieren Cut - + Ausschneiden Paste - + Einfügen Delete - + Löschen Select all - + Alles auswählen SidebarCalendarWidget Y - + J M - + M @@ -931,7 +949,7 @@ Go button - + Los @@ -939,19 +957,19 @@ Sign In button - + Anmelden Sign Out button - + Abmelden YearFrame Y - + J @@ -959,7 +977,7 @@ Today Today - Heute + Heute - + \ No newline at end of file diff --git a/translations/dde-calendar-service_el.ts b/translations/dde-calendar-service_el.ts index 946c1d52..4cec0e74 100644 --- a/translations/dde-calendar-service_el.ts +++ b/translations/dde-calendar-service_el.ts @@ -5,11 +5,11 @@ AccountItem Sync successful - + Επιτυχής συγχρονισμός Network error - + Σφάλμα δικτύου Server exception @@ -24,7 +24,7 @@ AccountManager Local account - + Τοπικός λογαριασμός Event types @@ -35,63 +35,63 @@ CColorPickerWidget Color - + Χρώμα Cancel button - + Ακύρωση Save button - + Αποθήκευση CDayMonthView Monday - + Δευτέρα Tuesday - + Τρίτη Wednesday - + Τετάρτη Thursday - + Πέμπτη Friday - + Παρασκευή Saturday - + Σάββατο Sunday - + Κυριακή CDayWindow Y - + Ε M - + Μ D - + Η Lunar @@ -102,121 +102,121 @@ CGraphicsView New Event - + Νέο Συμβάν CMonthScheduleNumItem %1 more - + %1 περισσότερο-α CMonthView New event - + Νέο συμβάν New Event - + Νέο Συμβάν CMonthWindow Y - + Y CMyScheduleView My Event - + Το συμβάν μου OK button - + ΟΚ Delete button - + Διαγραφή Edit button - + Επεξεργασία CPushButton New event type - + Νέος τύπος συμβάντος CScheduleDlg New Event - + Νέο συμβάν Edit Event - + Επεξεργασία συμβάντος End time must be greater than start time - + Ο χρόνος λήξης πρέπει να είναι μεγαλύτερος του χρόνου έναρξης OK button - + OK Never - + Ποτέ At time of event - + Την ώρα του συμβάντος 15 minutes before - + 15 λεπτά πριν 30 minutes before - + 30 λεπτά πριν 1 hour before - + 1 ώρα πριν 1 day before - + 1 ημέρα πριν 2 days before - + 2 ημέρες πριν 1 week before - + 1 εβδομάδα πριν On start day (9:00 AM) - + Στην έναρξη της ημέρας (9:00 ΠΜ) time(s) - + φορά(ές) Enter a name please @@ -224,67 +224,67 @@ The name can not only contain whitespaces - + Το όνομα δεν μπορρεί να περιέχει μόνο κενούς χαρακτήρες Type: - + Τύπος: Description: - + Περιγραφή: All Day: - + Ολοήμερο: Starts: - + Αρχίζει: Ends: - + Τελειώνει: Remind Me: - + Υπενθύμισέ μου: Repeat: - + Επανάληψη: End Repeat: - + Τέλος Επανάληψης: Calendar account: - + Λογαριασμός ημερολογίου: Calendar account - + Λογαριασμός ημερολογίου Type - + Τύπος Description - + Περιγραφή All Day - + Ολοήμερο Time: - + Ώρα: Time - + Ώρα Solar @@ -296,142 +296,142 @@ Starts - + Αρχίζει Ends - + Τελειώνει Remind Me - + Υπενθύμισέ μου Repeat - + Επανάληψη Daily - + Ημερήσιο Weekdays - + Εργάσιμες Weekly - + Εβδομαδιαίο Monthly - + Μηνιαίο Yearly - + Ετήσιο End Repeat - + Τέλος Επανάληψης After - + Μετά On - + Ενεργό Cancel button - + Ακύρωση Save button - + Αποθήκευση CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Όλες οι εμφανίσεις ενός επαναλαμβανόμενου συμβάντος πρέπει να έχουν την ίδια ολοήμερη κατάσταση. Do you want to change all occurrences? - + Θέλετε να αλλάξετε όλες τις εμφανίσεις; Cancel button - + Ακύρωση Change All - + Αλλαγή Όλων You are changing the repeating rule of this event. - + Αλλάζεις τον κανόνα επανάληψης αυτού του συμβάντος. You are deleting an event. - + Διαγράφεις ένα συμβάν Are you sure you want to delete this event? - + Είστε σίγουρος ότι θέλετε να διαγράψετε αυτό το συμβάν; Delete button - + Διαγραφή Do you want to delete all occurrences of this event, or only the selected occurrence? - + Θέλετε να διαγράψετε όλες τις εμφανίσεις αυτού του συμβάντος ή μόνο την επιλεγμένη εμφάνιση; Delete All - + Διαγραφή όλων Delete Only This Event - + Διαγραφή Μόνο Αυτού του Συμβάντος Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Θέλετε να διαγράψετε αυτήν και όλες τις μελλοντικές εμφανίσεις αυτού του συμβάντος ή μόνο την επιλεγμένη εμφάνιση; Delete All Future Events - + Διαγραφή Όλων των Μελλοντικών Συμβάντων You are changing a repeating event. - + Αλλάζεις ένα επαναλαμβανόμενο συμβάν. Do you want to change only this occurrence of the event, or all occurrences? - + Θέλετε να αλλάξετε μόνο αυτήν την εμφάνιση του συμβάντος ή όλες τις εμφανίσεις; All - + Όλα Only This Event - + Μόνο Αυτό το Συμβάν Do you want to change only this occurrence of the event, or this and all future occurrences? - + Θέλετε να αλλάξετε μόνο αυτήν την εμφάνιση του συμβάντος ή αυτήν και όλες τις μελλοντικές εμφανίσεις; All Future Events - + Όλα τα Μελλοντικά Συμβάντα You have selected a leap month, and will be reminded according to the rules of the lunar calendar. @@ -440,97 +440,125 @@ OK button - + ΟΚ CScheduleSearchDateItem Y - + Ε M - + Μ D - + Η CScheduleSearchItem Edit - + Επεξεργασία Delete - + Διαγραφή All Day - + Ολοήμερο CScheduleSearchView No search results - + Χωρίς αποτελέσματα αναζήτησης CScheduleView ALL DAY - + ΟΛΟΗΜΕΡΟ CSettingDialog - Sunday - - - - Monday - - - - 24-hour clock - - - - 12-hour clock + import ICS file Manual - + Μη αυτόματα 15 mins - + 15 λεπτά 30 mins - + 30 λεπτά 1 hour - + 1 ώρα 24 hours - + 24 ώρες Sync Now - + Συγχρονισμός Τώρα Last sync + Τελευταίος συγχρονισμός + + + Monday + Δευτέρα + + + Tuesday + Τρίτη + + + Wednesday + Τετάρτη + + + Thursday + Πέμπτη + + + Friday + Παρασκευή + + + Saturday + Σάββατο + + + Sunday + Κυριακή + + + 12-hour clock + 12-ωρο ρολόι + + + 24-hour clock + 24-ωρο ρολόι + + + Please go to the <a href='/'>Control Center</a> to change settings @@ -538,34 +566,34 @@ CTimeEdit (%1 mins) - + (%1 λεπτά) (%1 hour) - + (%1 ώρα) (%1 hours) - + (%1 ώρες) CTitleWidget Y - + Ε M - + Μ W - + Β D - + Η Search events and festivals @@ -576,94 +604,94 @@ CWeekWidget Sun - + Κυρ Mon - + Δευ Tue - + Τρι Wed - + Τετ Thu - + Πεμ Fri - + Παρ Sat - + Σαβ CWeekWindow Week - + Εβδομάδα Y - + Y CYearScheduleView All Day - + Ολοήμερο No event - + Χωρίς συμβάν CYearWindow Y - + Y CalendarWindow Calendar - + Ημερολόγιο Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Το Ημερολόγιο είναι ένα εργαλείο για να δεις ημερομηνίες, αλλα και επίσης ένας εξύπνος σχεδιαστής ημέρας για να προγραμματίσεις όλα τα πράγματα στην ζωή. Calendarmainwindow Calendar - + Ημερολόγιο Manage - + Διαχείρηση Privacy Policy - + Πολιτική Απορρήτου Syncing... - + Συγχρονισμός... Sync successful - + Επιτυχής συγχρονισμός Sync failed, please try later @@ -674,7 +702,7 @@ CenterWidget All Day - + Ολοήμερο @@ -713,15 +741,15 @@ 15 mins later - + 15 λεπτά αργότερα 1 hour later - + 1 ώρα αργότερα 4 hours later - + 4 ώρες αργότερα Tomorrow @@ -744,23 +772,31 @@ DragInfoGraphicsView Edit - + Επεξεργασία Delete - + Διαγραφή New event - + Νέο συμβάν New Event - + Νέο Συμβάν JobTypeListView + + export + + + + import ICS file + + You are deleting an event type. @@ -772,23 +808,23 @@ Cancel button - + Ακύρωση Delete button - + Διαγραφή QObject Account settings - + Ρυθμίσεις λογαριασμού Account - + Λογαριασμός Select items to be synced @@ -796,11 +832,11 @@ Events - + Συμβάντα General settings - + Γενικές ρυθμίσεις Sync interval @@ -812,7 +848,7 @@ Calendar account - + Λογαριασμός ημερολογίου Event types @@ -820,15 +856,15 @@ General - + Γενικά First day of week - + Πρώτη ημέρα της εβδομάδας Time - + Ώρα @@ -836,7 +872,7 @@ Today Return - Σήμερα + Σήμερα @@ -844,40 +880,48 @@ Today Return Today - Σήμερα + Σήμερα ScheduleTypeEditDlg New event type - + Νέος τύπος συμβάντος Edit event type - Name: + Import ICS file + + Name: + Όνομα: + Color: + Χρώμα: + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: Cancel button - + Ακύρωση Save button - + Αποθήκευση The name can not only contain whitespaces - + Το όνομα δεν μπορρεί να περιέχει μόνο κενούς χαρακτήρες Enter a name please @@ -888,42 +932,42 @@ Shortcut Help - + Βοήθεια Delete event - + Διαγραφή συμβάντος Copy - + Αντιγραφή Cut - + Αποκοπή Paste - + Επικόλληση Delete - + Διαγραφή Select all - + Επιλογή όλων SidebarCalendarWidget Y - + Ε M - + Μ @@ -939,19 +983,19 @@ Sign In button - + Σύνδεση Sign Out button - + Έξοδος YearFrame Y - + Y @@ -959,7 +1003,7 @@ Today Today - Σήμερα + Σήμερα diff --git a/translations/dde-calendar-service_en.ts b/translations/dde-calendar-service_en.ts index 1788c936..b89ed2c3 100644 --- a/translations/dde-calendar-service_en.ts +++ b/translations/dde-calendar-service_en.ts @@ -533,6 +533,34 @@ Last sync + + import ICS file + + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -779,6 +807,14 @@ button + + export + + + + import ICS file + + QObject @@ -883,6 +919,14 @@ Enter a name please + + Import ICS file + + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + Shortcut diff --git a/translations/dde-calendar-service_en_AU.ts b/translations/dde-calendar-service_en_AU.ts index f892a012..162e30e0 100644 --- a/translations/dde-calendar-service_en_AU.ts +++ b/translations/dde-calendar-service_en_AU.ts @@ -4,22 +4,18 @@ AccountItem - Sync successful - Network error - Server exception - Storage full @@ -27,12 +23,10 @@ AccountManager - Local account - Event types @@ -40,80 +34,66 @@ CColorPickerWidget - Color - Cancel button - + Cancel - Save button - + Save CDayMonthView - Monday - + Monday - Tuesday - + Tuesday - Wednesday - + Wednesday - Thursday - + Thursday - Friday - + Friday - Saturday - + Saturday - Sunday - + Sunday CDayWindow - Y - + Y - M - + M - D - + D - Lunar @@ -121,70 +101,60 @@ CGraphicsView - New Event - + New Event CMonthScheduleNumItem - %1 more - + %1 more CMonthView - New event - + New event - New Event - + New Event CMonthWindow - Y - + Y CMyScheduleView - My Event - + My Event - OK button - + OK - Delete button - + Delete - Edit button - + Edit CPushButton - New event type @@ -192,520 +162,417 @@ CScheduleDlg - - - New Event - + New Event - Edit Event - + Edit Event - End time must be greater than start time - + End time must be greater than start time - OK button - + OK - - - - - - Never - + Never - At time of event - + At time of event - 15 minutes before - + 15 minutes before - 30 minutes before - + 30 minutes before - 1 hour before - + 1 hour before - - 1 day before - + 1 day before - - 2 days before - + 2 days before - - 1 week before - + 1 week before - On start day (9:00 AM) - + On start day (9:00 AM) - - - - time(s) - + time(s) - Enter a name please - The name can not only contain whitespaces - - Type: - + Type: - - Description: - + Description: - - All Day: - + All Day: - - Starts: - + Starts: - - Ends: - + Ends: - - Remind Me: - + Remind Me: - - Repeat: - + Repeat: - - End Repeat: - + End Repeat: - Calendar account: - Calendar account - Type - + Type - Description - + Description - All Day - + All Day - Time: - Time - Solar - Lunar - Starts - + Starts - Ends - + Ends - Remind Me - + Remind Me - Repeat - + Repeat - - Daily - + Daily - - Weekdays - + Weekdays - - Weekly - + Weekly - - - Monthly - + Monthly - - - Yearly - + Yearly - End Repeat - + End Repeat - After - + After - On - + On - Cancel button - + Cancel - Save button - + Save CScheduleOperation - All occurrences of a repeating event must have the same all-day status. - + All occurrences of a repeating event must have the same all-day status. - - Do you want to change all occurrences? - + Do you want to change all occurrences? - - - - - - - Cancel button - + Cancel - - Change All - + Change All - You are changing the repeating rule of this event. - + You are changing the repeating rule of this event. - - - You are deleting an event. - + You are deleting an event. - Are you sure you want to delete this event? - + Are you sure you want to delete this event? - Delete button - + Delete - Do you want to delete all occurrences of this event, or only the selected occurrence? - + Do you want to delete all occurrences of this event, or only the selected occurrence? - Delete All - + Delete All - - Delete Only This Event - + Delete Only This Event - Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - Delete All Future Events - + Delete All Future Events - - You are changing a repeating event. - + You are changing a repeating event. - Do you want to change only this occurrence of the event, or all occurrences? - + Do you want to change only this occurrence of the event, or all occurrences? - All - + All - - Only This Event - + Only This Event - Do you want to change only this occurrence of the event, or this and all future occurrences? - + Do you want to change only this occurrence of the event, or this and all future occurrences? - All Future Events - + All Future Events - You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - OK button - + OK CScheduleSearchDateItem - Y - + Y - M - + M - D - + D CScheduleSearchItem - Edit - + Edit - Delete - + Delete - All Day - + All Day CScheduleSearchView - No search results - + No search results CScheduleView - ALL DAY - + ALL DAY CSettingDialog - - Sunday + import ICS file - - Monday - + Manual + Manual - - 24-hour clock + 15 mins - - 12-hour clock + 30 mins - - Manual - + 1 hour + 1 hour - - 15 mins + 24 hours - - 30 mins + Sync Now - - 1 hour + Last sync - - 24 hours + Monday + Monday + + + Tuesday + Tuesday + + + Wednesday + Wednesday + + + Thursday + Thursday + + + Friday + Friday + + + Saturday + Saturday + + + Sunday + Sunday + + + 12-hour clock - - Sync Now + 24-hour clock - - Last sync + Please go to the <a href='/'>Control Center</a> to change settings CTimeEdit - (%1 mins) - (%1 hour) - (%1 hours) @@ -713,28 +580,22 @@ CTitleWidget - Y - + Y - M - + M - W - + W - D - + D - - Search events and festivals @@ -742,118 +603,97 @@ CWeekWidget - Sun - + Sun - Mon - + Mon - Tue - + Tue - Wed - + Wed - Thu - + Thu - Fri - + Fri - Sat - + Sat CWeekWindow - Week - + Week - Y - + Y CYearScheduleView - - All Day - + All Day - No event - + No event CYearWindow - Y - + Y CalendarWindow - Calendar - + Calendar - Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Calendarmainwindow - Calendar - + Calendar - Manage - Privacy Policy - + Privacy Policy - Syncing... - + Syncing... - Sync successful - Sync failed, please try later @@ -861,205 +701,168 @@ CenterWidget - All Day - + All Day DAccountDataBase - Work - + Work - Life - + Life - Other - + Other DAlarmManager - - - - Close button - Close + Close - One day before start - One day before start + One day before start - Remind me tomorrow - Remind me tomorrow + Remind me tomorrow - Remind me later - Remind me later + Remind me later - 15 mins later - 1 hour later - 4 hours later - - - Tomorrow - Tomorrow + Tomorrow - Schedule Reminder - Schedule Reminder + Schedule Reminder - - %1 to %2 - - Today - Today + Today DragInfoGraphicsView - Edit - + Edit - Delete - + Delete - New event - + New event - New Event - + New Event JobTypeListView - + export + + + + import ICS file + + + You are deleting an event type. - All events under this type will be deleted and cannot be recovered. - Cancel button - + Cancel - Delete button - + Delete QObject - Account settings - Account - + Account - Select items to be synced - Events - - General settings - Sync interval - - Manage calendar - Calendar account - - Event types - General - + General - First day of week - Time @@ -1067,64 +870,60 @@ Return - Today Return - Today + Today Return Today - - - Today Return Today - Today + Today ScheduleTypeEditDlg - New event type - Edit event type - + Import ICS file + + + Name: - Color: - + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + Cancel button - + Cancel - Save button - + Save - The name can not only contain whitespaces - Enter a name please @@ -1132,58 +931,48 @@ Shortcut - Help - + Help - Delete event - + Delete event - Copy - + Copy - Cut - + Cut - Paste - + Paste - Delete - + Delete - Select all - + Select all SidebarCalendarWidget - Y - + Y - M - + M TimeJumpDialog - Go button @@ -1192,40 +981,29 @@ UserloginWidget - Sign In button - + Sign In - Sign Out button - + Sign Out YearFrame - Y - + Y today - - - - - - - - Today Today - Today + Today diff --git a/translations/dde-calendar-service_en_US.ts b/translations/dde-calendar-service_en_US.ts index 08c4cd40..9c1ce56d 100644 --- a/translations/dde-calendar-service_en_US.ts +++ b/translations/dde-calendar-service_en_US.ts @@ -1,6 +1,702 @@ + + AccountItem + + Sync successful + Sync successful + + + Network error + Network error + + + Server exception + Server exception + + + Storage full + Storage full + + + + AccountManager + + Local account + Local account + + + Event types + Event types + + + + CColorPickerWidget + + Color + Color + + + Cancel + button + Cancel + + + Save + button + Save + + + + CDayMonthView + + Monday + Monday + + + Tuesday + Tuesday + + + Wednesday + Wednesday + + + Thursday + Thursday + + + Friday + Friday + + + Saturday + Saturday + + + Sunday + Sunday + + + + CDayWindow + + Y + Y + + + M + M + + + D + D + + + Lunar + Lunar + + + + CGraphicsView + + New Event + New Event + + + + CMonthScheduleNumItem + + %1 more + %1 more + + + + CMonthView + + New event + New event + + + New Event + New Event + + + + CMonthWindow + + Y + Y + + + + CMyScheduleView + + My Event + My Event + + + OK + button + OK + + + Delete + button + Delete + + + Edit + button + Edit + + + + CPushButton + + New event type + New event type + + + + CScheduleDlg + + New Event + New Event + + + Edit Event + Edit Event + + + End time must be greater than start time + End time must be greater than start time + + + OK + button + OK + + + Never + Never + + + At time of event + At time of event + + + 15 minutes before + 15 minutes before + + + 30 minutes before + 30 minutes before + + + 1 hour before + 1 hour before + + + 1 day before + 1 day before + + + 2 days before + 2 days before + + + 1 week before + 1 week before + + + On start day (9:00 AM) + On start day (9:00 AM) + + + time(s) + time(s) + + + Enter a name please + Enter a name please + + + The name can not only contain whitespaces + The name can not only contain whitespaces + + + Type: + Type: + + + Description: + Description: + + + All Day: + All Day: + + + Starts: + Starts: + + + Ends: + Ends: + + + Remind Me: + Remind Me: + + + Repeat: + Repeat: + + + End Repeat: + End Repeat: + + + Calendar account: + Calendar account: + + + Calendar account + Calendar account + + + Type + Type + + + Description + Description + + + All Day + All Day + + + Time: + Time: + + + Time + Time + + + Solar + Solar + + + Lunar + Lunar + + + Starts + Starts + + + Ends + Ends + + + Remind Me + Remind Me + + + Repeat + Repeat + + + Daily + Daily + + + Weekdays + Weekdays + + + Weekly + Weekly + + + Monthly + Monthly + + + Yearly + Yearly + + + End Repeat + End Repeat + + + After + After + + + On + On + + + Cancel + button + Cancel + + + Save + button + Save + + + + CScheduleOperation + + All occurrences of a repeating event must have the same all-day status. + All occurrences of a repeating event must have the same all-day status. + + + Do you want to change all occurrences? + Do you want to change all occurrences? + + + Cancel + button + Cancel + + + Change All + Change All + + + You are changing the repeating rule of this event. + You are changing the repeating rule of this event. + + + You are deleting an event. + You are deleting an event. + + + Are you sure you want to delete this event? + Are you sure you want to delete this event? + + + Delete + button + Delete + + + Do you want to delete all occurrences of this event, or only the selected occurrence? + Do you want to delete all occurrences of this event, or only the selected occurrence? + + + Delete All + Delete All + + + Delete Only This Event + Delete Only This Event + + + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? + + + Delete All Future Events + Delete All Future Events + + + You are changing a repeating event. + You are changing a repeating event. + + + Do you want to change only this occurrence of the event, or all occurrences? + Do you want to change only this occurrence of the event, or all occurrences? + + + All + All + + + Only This Event + Only This Event + + + Do you want to change only this occurrence of the event, or this and all future occurrences? + Do you want to change only this occurrence of the event, or this and all future occurrences? + + + All Future Events + All Future Events + + + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. + + + OK + button + OK + + + + CScheduleSearchDateItem + + Y + Y + + + M + M + + + D + D + + + + CScheduleSearchItem + + Edit + Edit + + + Delete + Delete + + + All Day + All Day + + + + CScheduleSearchView + + No search results + No search results + + + + CScheduleView + + ALL DAY + ALL DAY + + + + CSettingDialog + + Manual + Manual + + + 15 mins + 15 mins + + + 30 mins + 30 mins + + + 1 hour + 1 hour + + + 24 hours + 24 hours + + + Sync Now + Sync Now + + + Last sync + Last sync + + + Monday + Monday + + + Sunday + Sunday + + + 12-hour clock + 12-hour clock + + + 24-hour clock + 24-hour clock + + + Tuesday + Tuesday + + + Wednesday + Wednesday + + + Thursday + Thursday + + + Friday + Friday + + + Saturday + Saturday + + + + CTimeEdit + + (%1 mins) + (%1 mins) + + + (%1 hour) + (%1 hour) + + + (%1 hours) + (%1 hours) + + + + CTitleWidget + + Y + Y + + + M + M + + + W + W + + + D + D + + + Search events and festivals + Search events and festivals + + + + CWeekWidget + + Sun + Sun + + + Mon + Mon + + + Tue + Tue + + + Wed + Wed + + + Thu + Thu + + + Fri + Fri + + + Sat + Sat + + + + CWeekWindow + + Week + Week + + + Y + Y + + + + CYearScheduleView + + All Day + All Day + + + No event + No event + + + + CYearWindow + + Y + Y + + + + CalendarWindow + + Calendar + Calendar + + + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. + + + + Calendarmainwindow + + Calendar + Calendar + + + Manage + Manage + + + Privacy Policy + Privacy Policy + + + Syncing... + Syncing... + + + Sync successful + Sync successful + + + Sync failed, please try later + Sync failed, please try later + + + + CenterWidget + + All Day + All Day + + DAccountDataBase @@ -64,12 +760,103 @@ Today + + DragInfoGraphicsView + + Edit + Edit + + + Delete + Delete + + + New event + New event + + + New Event + New Event + + + + JobTypeListView + + You are deleting an event type. + You are deleting an event type. + + + All events under this type will be deleted and cannot be recovered. + All events under this type will be deleted and cannot be recovered. + + + Cancel + button + Cancel + + + Delete + button + Delete + + + + QObject + + Account settings + Account settings + + + Account + Account + + + Select items to be synced + Select items to be synced + + + Events + Events + + + General settings + General settings + + + Sync interval + Sync interval + + + Manage calendar + Manage calendar + + + Calendar account + Calendar account + + + Event types + Event types + + + General + General + + + First day of week + First day of week + + + Time + Time + + Return Today Return - Today + Today @@ -77,7 +864,114 @@ Today Return Today - Today + Today + + + + ScheduleTypeEditDlg + + New event type + New event type + + + Edit event type + Edit event type + + + Name: + Name: + + + Color: + Color: + + + Cancel + button + Cancel + + + Save + button + Save + + + The name can not only contain whitespaces + The name can not only contain whitespaces + + + Enter a name please + Enter a name please + + + + Shortcut + + Help + Help + + + Delete event + Delete event + + + Copy + Copy + + + Cut + Cut + + + Paste + Paste + + + Delete + Delete + + + Select all + Select all + + + + SidebarCalendarWidget + + Y + Y + + + M + M + + + + TimeJumpDialog + + Go + button + Go + + + + UserloginWidget + + Sign In + button + Sign In + + + Sign Out + button + Sign Out + + + + YearFrame + + Y + Y @@ -85,7 +979,7 @@ Today Today - Today + Today diff --git a/translations/dde-calendar-service_es.ts b/translations/dde-calendar-service_es.ts index 5bce9b6a..8f192009 100644 --- a/translations/dde-calendar-service_es.ts +++ b/translations/dde-calendar-service_es.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Sincronización exitosa Network error - + Error de red Server exception - + Excepción del servidor Storage full - + Almacenamiento lleno AccountManager Local account - + Cuenta local Event types - + Tipos de eventos CColorPickerWidget Color - + Color Cancel button - + Cancelar Save button - + Guardar CDayMonthView Monday - + lunes Tuesday - + martes Wednesday - + miércoles Thursday - + jueves Friday - + viernes Saturday - + sábado Sunday - + domingo CDayWindow Y - + A M - + M D - + D Lunar - + Lunar CGraphicsView New Event - + Nuevo evento CMonthScheduleNumItem %1 more - + %1 más CMonthView New event - + Nuevo evento New Event - + Nuevo evento CMonthWindow Y - + A CMyScheduleView My Event - + Mi evento OK button - + Aceptar Delete button - + Borrar Edit button - + Editar CPushButton New event type - + Nuevo tipo de evento CScheduleDlg New Event - + Nuevo evento Edit Event - + Editar evento End time must be greater than start time - + El tiempo final debe ser mayor que el tiempo inicial OK button - + Aceptar Never - + Nunca At time of event - + En el momento del evento. 15 minutes before - + 15 minutos antes 30 minutes before - + 30 minutos antes 1 hour before - + 1 hora antes 1 day before - + 1 día antes 2 days before - + 2 días antes 1 week before - + 1 semana antes On start day (9:00 AM) - + El día de inicio (9:00 a.m.) time(s) - + hora(s) Enter a name please - + Por favor ingrese un nombre The name can not only contain whitespaces - + El nombre no puede contener espacios en blanco Type: - + Tipo: Description: - + Descripción: All Day: - + Todo el día: Starts: - + Inicia: Ends: - + Termina: Remind Me: - + Recordarme: Repeat: - + Repetir: End Repeat: - + Fin de repetición: Calendar account: - + Cuenta de calendario: Calendar account - + Cuenta de calendario Type - + Tipo Description - + Descripción All Day - + Todo el día Time: - + Tiempo: Time - + Tiempo Solar - + Solar Lunar - + Lunar Starts - + Inicia Ends - + Termina Remind Me - + Recordarme Repeat - + Repetir Daily - + Diariamente Weekdays - + Días laborables Weekly - + Semanalmente Monthly - + Mensualmente Yearly - + Anualmente End Repeat - + Fin de repetición After - + Después On - + Encendido Cancel button - + Cancelar Save button - + Guardar CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Todas las instancias de un evento repetido debe tener el mismo estado todo el día. Do you want to change all occurrences? - + ¿Desea cambiar todas las instancias? Cancel button - + Cancelar Change All - + Cambiar todos You are changing the repeating rule of this event. - + Está cambiando la regla de repetición de este evento. You are deleting an event. - + Esta borrando un evento Are you sure you want to delete this event? - + ¿Está seguro que desea borrar este evento? Delete button - + Borrar Do you want to delete all occurrences of this event, or only the selected occurrence? - + ¿Desea borrar todas las instancias de este evento, o solo la instancia seleccionada? Delete All - + Eliminar todo Delete Only This Event - + Borrar solo este evento Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + ¿Desea eliminar este y todas las instancias futuras de este evento, o solo la instancia seleccionada? Delete All Future Events - + Borrar todos los eventos futuros You are changing a repeating event. - + Esta cambiando una repetición de un evento. Do you want to change only this occurrence of the event, or all occurrences? - + ¿Desea cambiar solo la instancia de este evento, o todas las instancias? All - + Todos Only This Event - + Solo este evento Do you want to change only this occurrence of the event, or this and all future occurrences? - + ¿Desea cambiar solo este acontecimiento del evento, o este y todos los acontecimientos futuros? All Future Events - + Todos los eventos futuros You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Ha seleccionado un mes bisiesto y se le recordará de acuerdo con las reglas del calendario lunar. OK button - + Aceptar CScheduleSearchDateItem Y - + Y M - + M D - + D CScheduleSearchItem Edit - + Editar Delete - + Eliminar All Day - + Todo el día CScheduleSearchView No search results - + Sin resultados CScheduleView ALL DAY - + EVENTOS CSettingDialog - Sunday - + Manual + Manual - Monday - + 15 mins + 15 minutos - 24-hour clock - + 30 mins + 30 minutos - 12-hour clock - + 1 hour + 1 hora - Manual - + 24 hours + 24 horas - 15 mins - + Sync Now + Sincronizar ahora - 30 mins - + Last sync + Ultima sincronizacion - 1 hour - + Monday + Lunes - 24 hours - + Sunday + Domingo - Sync Now - + 12-hour clock + Reloj de 12 horas - Last sync - + 24-hour clock + Reloj de 24 horas + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 mins) (%1 hour) - + (%1 hora) (%1 hours) - + (%1 horas) CTitleWidget Y - + Y M - + M W - + W D - + D Search events and festivals - + Buscar eventos y festivales CWeekWidget Sun - + Domingo Mon - + Lunes Tue - + Mar Wed - + Miércoles Thu - + Jue Fri - + Viernes Sat - + Sábado CWeekWindow Week - + Semana Y - + A CYearScheduleView All Day - + Todo el día No event - + No hay eventos CYearWindow Y - + A CalendarWindow Calendar - + Calendario Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Calendario de Deepin es una herramienta para consultar fechas, y un conveniente planificador para agendar sus reuniones y eventos. Calendarmainwindow Calendar - + Calendario Manage - + Ajustes Privacy Policy - + Política de privacidad Syncing... - + Sincronizando… Sync successful - + Sincronización exitosa Sync failed, please try later - + La sincronización falló, intentelo más tarde CenterWidget All Day - + Todo el día @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Editar Delete - + Borrar New event - + Nuevo evento New Event - + Nuevo evento JobTypeListView You are deleting an event type. - + Está eliminando un tipo de evento. All events under this type will be deleted and cannot be recovered. - + Todos los eventos de este tipo se eliminarán y no se podrán recuperar. Cancel button - + Cancelar Delete button - + Eliminar QObject Account settings - + Ajustes de la cuenta Account - + Cuenta Select items to be synced - + Seleccionar elementos a sincronizar Events - + Eventos General settings - + Ajustes generales Sync interval - + Intervalo de sincronización Manage calendar - + Administrar calendario Calendar account - + Cuenta de calendario Event types - + Tipos de eventos General - + General First day of week - + Primer día de la semana Time - + Tiempo @@ -836,7 +854,7 @@ Today Return - Hoy + Hoy @@ -844,86 +862,86 @@ Today Return Today - Hoy + Hoy ScheduleTypeEditDlg New event type - + Nuevo tipo de evento Edit event type - + Editar tipo de evento Name: - + Nombre: Color: - + Color: Cancel button - + Cancelar Save button - + Guardar The name can not only contain whitespaces - + El nombre no puede contener espacios en blanco Enter a name please - + Por favor ingrese un nombre Shortcut Help - + Ayuda Delete event - + Borrar evento Copy - + Duplicar Cut - + Cortar Paste - + Pegar Delete - + Borrar Select all - + Seleccionar todo SidebarCalendarWidget Y - + A M - + M @@ -931,7 +949,7 @@ Go button - + Ir @@ -939,19 +957,19 @@ Sign In button - + Iniciar sesión Sign Out button - + Cerrar sesión YearFrame Y - + A @@ -959,7 +977,7 @@ Today Today - Hoy + Hoy - + \ No newline at end of file diff --git a/translations/dde-calendar-service_fa.ts b/translations/dde-calendar-service_fa.ts index 2c4e6435..7b228ae2 100644 --- a/translations/dde-calendar-service_fa.ts +++ b/translations/dde-calendar-service_fa.ts @@ -4,22 +4,18 @@ AccountItem - Sync successful - Network error - Server exception - Storage full @@ -27,12 +23,10 @@ AccountManager - Local account - Event types @@ -40,57 +34,47 @@ CColorPickerWidget - Color - + رنگ - Cancel button - + انصراف - Save button - + ذخیره CDayMonthView - Monday - Tuesday - Wednesday - Thursday - Friday - Saturday - Sunday @@ -98,22 +82,18 @@ CDayWindow - Y - M - D - Lunar @@ -121,7 +101,6 @@ CGraphicsView - New Event @@ -129,7 +108,6 @@ CMonthScheduleNumItem - %1 more @@ -137,12 +115,10 @@ CMonthView - New event - New Event @@ -150,7 +126,6 @@ CMonthWindow - Y @@ -158,33 +133,28 @@ CMyScheduleView - My Event - OK button - + تایید - Delete button - + حذف - Edit button - + ویرایش CPushButton - New event type @@ -192,410 +162,298 @@ CScheduleDlg - - - New Event - Edit Event - End time must be greater than start time - OK button - + تایید - - - - - - Never - + هرگز - At time of event - 15 minutes before - 30 minutes before - 1 hour before - - 1 day before - - 2 days before - - 1 week before - On start day (9:00 AM) - - - - time(s) - Enter a name please - The name can not only contain whitespaces - - Type: - + نوع: - - Description: - - All Day: - - Starts: - - Ends: - - Remind Me: - - Repeat: - - End Repeat: - Calendar account: - Calendar account - Type - Description - + توضیحات - All Day - Time: - Time - Solar - Lunar - Starts - Ends - Remind Me - Repeat - + تکرار - - Daily - - Weekdays - - Weekly - - - Monthly - - - Yearly - End Repeat - After - On - Cancel button - + انصراف - Save button - + ذخیره CScheduleOperation - All occurrences of a repeating event must have the same all-day status. - - Do you want to change all occurrences? - - - - - - - Cancel button - + انصراف - - Change All - You are changing the repeating rule of this event. - - - You are deleting an event. - Are you sure you want to delete this event? - Delete button - + حذف - Do you want to delete all occurrences of this event, or only the selected occurrence? - Delete All - - Delete Only This Event - Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - Delete All Future Events - - You are changing a repeating event. - Do you want to change only this occurrence of the event, or all occurrences? - All - - Only This Event - Do you want to change only this occurrence of the event, or this and all future occurrences? - All Future Events - You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - OK button - + تایید CScheduleSearchDateItem - Y - M - D @@ -603,17 +461,14 @@ CScheduleSearchItem - Edit - + ویرایش - Delete - + حذف - All Day @@ -621,15 +476,13 @@ CScheduleSearchView - No search results - + نتیجه جستجو یافت نشد CScheduleView - ALL DAY @@ -637,75 +490,89 @@ CSettingDialog - - Sunday + import ICS file + + + + Manual + دستی + + + 15 mins + + + + 30 mins + + + + 1 hour + ۱ ساعت + + + 24 hours + + + + Sync Now + + + + Last sync - Monday - - 24-hour clock + Tuesday - - 12-hour clock + Wednesday - - Manual + Thursday - - 15 mins + Friday - - 30 mins + Saturday - - 1 hour + Sunday - - 24 hours + 12-hour clock - - Sync Now + 24-hour clock - - Last sync + Please go to the <a href='/'>Control Center</a> to change settings CTimeEdit - (%1 mins) - (%1 hour) - (%1 hours) @@ -713,28 +580,22 @@ CTitleWidget - Y - M - W - D - - Search events and festivals @@ -742,50 +603,41 @@ CWeekWidget - Sun - + یکشنبه - Mon - + دوشنبه - Tue - + سه شنبه - Wed - + چهار شنبه - Thu - + پنج شنبه - Fri - + جمعه - Sat - + شنبه CWeekWindow - Week - Y @@ -793,13 +645,10 @@ CYearScheduleView - - All Day - No event @@ -807,7 +656,6 @@ CYearWindow - Y @@ -815,12 +663,10 @@ CalendarWindow - Calendar - + تقویم - Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. @@ -828,32 +674,26 @@ Calendarmainwindow - Calendar - + تقویم - Manage - Privacy Policy - Syncing... - + در حال همگام سازی... - Sync successful - Sync failed, please try later @@ -861,7 +701,6 @@ CenterWidget - All Day @@ -869,106 +708,81 @@ DAccountDataBase - Work - + کار - Life - + زندگی - Other - + سایر DAlarmManager - - - - Close button - بستن + بستن - One day before start - یک روز قبل از شروع + یک روز قبل از شروع - Remind me tomorrow - فردا یادم بنداز + فردا یادم بنداز - Remind me later - بعدا ً به من یادآوری کن + بعدا ً به من یادآوری کن - 15 mins later - 1 hour later - 4 hours later - - - Tomorrow - فردا + فردا - Schedule Reminder - یادآور برنامه + یادآور برنامه - - %1 to %2 - - Today - امروز + امروز DragInfoGraphicsView - Edit - + ویرایش - Delete - + حذف - New event - New Event @@ -976,90 +790,79 @@ JobTypeListView - + export + + + + import ICS file + + + You are deleting an event type. - All events under this type will be deleted and cannot be recovered. - Cancel button - + انصراف - Delete button - + حذف QObject - Account settings - Account - + حساب کاربری - Select items to be synced - Events - - General settings - Sync interval - - Manage calendar - Calendar account - - Event types - General - + کلی - First day of week - Time @@ -1067,64 +870,60 @@ Return - Today Return - امروز + امروز Return Today - - - Today Return Today - امروز + امروز ScheduleTypeEditDlg - New event type - Edit event type - - Name: + Import ICS file - + Name: + نام: + + Color: - + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + Cancel button - + انصراف - Save button - + ذخیره - The name can not only contain whitespaces - Enter a name please @@ -1132,50 +931,41 @@ Shortcut - Help - + راهنما - Delete event - Copy - + کپی - Cut - + برش - Paste - + افزودن - Delete - + حذف - Select all - + انتخاب همه SidebarCalendarWidget - Y - M @@ -1183,7 +973,6 @@ TimeJumpDialog - Go button @@ -1192,22 +981,19 @@ UserloginWidget - Sign In button - + وارد شدن به حساب کاربری - Sign Out button - + خارج شدن از حساب کاربری YearFrame - Y @@ -1215,17 +1001,9 @@ today - - - - - - - - Today Today - امروز + امروز diff --git a/translations/dde-calendar-service_fi.ts b/translations/dde-calendar-service_fi.ts index 5faadb0e..6ee55844 100644 --- a/translations/dde-calendar-service_fi.ts +++ b/translations/dde-calendar-service_fi.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Synkronointi onnistui Network error - + Verkkovirhe Server exception - + Palvelimen poikkeus Storage full - + Levytila täynnä AccountManager Local account - + Paikallinen tili Event types - + Tapahtumatyypit CColorPickerWidget Color - + Väri Cancel button - + Peruuta Save button - + Tallenna CDayMonthView Monday - + Maanantai Tuesday - + Tiistai Wednesday - + Keskiviikko Thursday - + Torstai Friday - + Perjantai Saturday - + Lauantai Sunday - + Sunnuntai CDayWindow Y - + V M - + K D - + P Lunar - + Kuu CGraphicsView New Event - + Uusi tapahtuma CMonthScheduleNumItem %1 more - + %1 lisää CMonthView New event - + Uusi tapahtuma New Event - + Uusi tapahtuma CMonthWindow Y - + V CMyScheduleView My Event - + Tapahtuma OK button - + OK Delete button - + Poista Edit button - + Muokkaa CPushButton New event type - + Uusi tapahtuman tyyppi CScheduleDlg New Event - + Uusi tapahtuma Edit Event - + Muokkaa tapahtumaa End time must be greater than start time - + Lopetusajan on oltava pidempi kuin aloitusaika OK button - + OK Never - + Ei koskaan At time of event - + Tapahtuman aikaan 15 minutes before - + 15 min ennen 30 minutes before - + 30 min ennen 1 hour before - + 1 tunti ennen 1 day before - + 1 päivä ennen 2 days before - + 2 päivää ennen 1 week before - + 1 viikko ennen On start day (9:00 AM) - + Aloituspäivänä (9:00) time(s) - + kertaa Enter a name please - + Anna nimi The name can not only contain whitespaces - + Nimi ei voi sisältää vain välilyöntejä Type: - + Tyyppi: Description: - + Kuvaus: All Day: - + Koko päivä: Starts: - + Alkaa: Ends: - + Loppuu: Remind Me: - + Muistuta minua: Repeat: - + Toista: End Repeat: - + Lopeta toisto: Calendar account: - + Kalenteritili: Calendar account - + Kalenteritili Type - + Tyyppi Description - + Kuvaus All Day - + Koko päivä Time: - + Aika: Time - + Aika Solar - + Aurinko Lunar - + Kuu Starts - + Alkaa Ends - + Loppuu Remind Me - + Muistuta minua Repeat - + Toista Daily - + Päivittäin Weekdays - + Arkisin Weekly - + Viikoittain Monthly - + Kuukausittain Yearly - + Vuosittain End Repeat - + Lopeta toisto After - + Jälkeen On - + Päällä Cancel button - + Peruuta Save button - + Tallenna CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Kaikilla toistuvilla tapahtumilla on oltava sama koko päivän tila. Do you want to change all occurrences? - + Haluatko muuttaa kaikkia tapahtumia? Cancel button - + Peruuta Change All - + Vaihda kaikki You are changing the repeating rule of this event. - + Olet muuttamassa tämän tapahtuman toistuvaa sääntöä. You are deleting an event. - + Olet poistamassa tapahtumaa. Are you sure you want to delete this event? - + Haluatko varmasti poistaa tämän tapahtuman? Delete button - + Poista Do you want to delete all occurrences of this event, or only the selected occurrence? - + Haluatko poistaa kaikki tämän tapahtuman esiintymät vai vain valitun tapahtuman? Delete All - + Poista kaikki Delete Only This Event - + Poista vain tämä tapahtuma Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Haluatko poistaa tämän ja kaikki tämän tapahtuman tulevat esiintymät vai vain valitun tapahtuman? Delete All Future Events - + Poista kaikki tulevat tapahtumat You are changing a repeating event. - + Olet vaihtamassa toistuvaa tapahtumaa. Do you want to change only this occurrence of the event, or all occurrences? - + Haluatko muuttaa vain tämän tapahtuman vai kaikki tapahtumat? All - + Kaikki Only This Event - + Vain tämä tapahtuma Do you want to change only this occurrence of the event, or this and all future occurrences? - + Haluatko muuttaa vain tämän tapahtuman vai tätä ja kaikkia tulevia tapahtumia? All Future Events - + Kaikki tulevat tapahtumat You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Olet valinnut karkauskuukauden ja sinua muistutetaan kuukalenterin sääntöjen mukaisesti. OK button - + OK CScheduleSearchDateItem Y - + V M - + K D - + P CScheduleSearchItem Edit - + Muokkaa Delete - + Poista All Day - + Koko päivä CScheduleSearchView No search results - + Ei hakutuloksia CScheduleView ALL DAY - + AIKA CSettingDialog - Sunday - + Manual + Manuaalinen - Monday - + 15 mins + 15 min - 24-hour clock - + 30 mins + 30 min - 12-hour clock - + 1 hour + 1 tunti - Manual - + 24 hours + 24 tuntia - 15 mins - + Sync Now + Synkronoi nyt - 30 mins - + Last sync + Viimeisin synkronointi - 1 hour - + Monday + Maanantai - 24 hours - + Sunday + Sunnuntai - Sync Now - + 12-hour clock + 12h kello - Last sync - + 24-hour clock + 24h kello + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 min) (%1 hour) - + (%1 tunti) (%1 hours) - + (%1 tuntia) CTitleWidget Y - + V M - + KK W - + VK D - + PV Search events and festivals - + Hae tapahtumia ja festivaaleja CWeekWidget Sun - + Su Mon - + Ma Tue - + Ti Wed - + Ke Thu - + To Fri - + Pe Sat - + La CWeekWindow Week - + Viikko Y - + V CYearScheduleView All Day - + Koko päivä No event - + Ei tapahtumaa CYearWindow Y - + V CalendarWindow Calendar - + Kalenteri Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Kalenteri on työkalu almanakan tarkasteluun ja voit myös tehdä hälytykset ja muistutukset kalenteriin. Calendarmainwindow Calendar - + Kalenteri Manage - + Hallitse Privacy Policy - + Tietosuojakäytäntö Syncing... - + Synkronoidaan... Sync successful - + Synkronointi onnistui Sync failed, please try later - + Synkronointi epäonnistui, yritä myöhemmin CenterWidget All Day - + Koko päivä @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Muokkaa Delete - + Poista New event - + Uusi tapahtuma New Event - + Uusi tapahtuma JobTypeListView You are deleting an event type. - + Olet poistamassa tapahtumatyyppiä. All events under this type will be deleted and cannot be recovered. - + Kaikki tämän tyypin tapahtumat poistetaan, eikä niitä voi palauttaa. Cancel button - + Peruuta Delete button - + Poista QObject Account settings - + Tilin asetukset Account - + Tili Select items to be synced - + Valitse synkronoitavat kohteet Events - + Tapahtumat General settings - + Yleiset asetukset Sync interval - + Synkronointiväli Manage calendar - + Hallitse kalenteria Calendar account - + Kalenteritili Event types - + Tapahtumatyypit General - + Yleinen First day of week - + Viikon ensimmäinen päivä Time - + Aika @@ -836,7 +854,7 @@ Today Return - Tänään + Tänään @@ -844,86 +862,86 @@ Today Return Today - Tänään + Tänään ScheduleTypeEditDlg New event type - + Uusi tapahtuman tyyppi Edit event type - + Muokkaa tapahtuman tyyppiä Name: - + Nimi: Color: - + Väri: Cancel button - + Peruuta Save button - + Tallenna The name can not only contain whitespaces - + Nimi ei voi sisältää vain välilyöntejä Enter a name please - + Anna nimi Shortcut Help - + Ohje Delete event - + Poista tapahtuma Copy - + Kopioi Cut - + Leikkaa Paste - + Liitä Delete - + Poista Select all - + Valitse kaikki SidebarCalendarWidget Y - + V M - + K @@ -931,7 +949,7 @@ Go button - + Mene @@ -939,19 +957,19 @@ Sign In button - + Kirjaudu sisään Sign Out button - + Kirjaudu ulos YearFrame Y - + V @@ -959,7 +977,7 @@ Today Today - Tänään + Tänään - + \ No newline at end of file diff --git a/translations/dde-calendar-service_fr.ts b/translations/dde-calendar-service_fr.ts index 35a76739..d3f5c4dc 100644 --- a/translations/dde-calendar-service_fr.ts +++ b/translations/dde-calendar-service_fr.ts @@ -5,532 +5,560 @@ AccountItem Sync successful - + Synchronisation réussie Network error - + Erreur réseau Server exception - + Exception de serveur Storage full - + Stockage plein AccountManager Local account - + Compte local Event types - + Type d'événement CColorPickerWidget Color - + Couleur Cancel button - + Annuler Save button - + Sauvegarder CDayMonthView Monday - + Lundi Tuesday - + Mardi Wednesday - + Mercredi Thursday - + Jeudi Friday - + Vendredi Saturday - + Samedi Sunday - + Dimanche CDayWindow Y - + A M - + M D - + J Lunar - + Lunaire CGraphicsView New Event - + Nouvel événement CMonthScheduleNumItem %1 more - + %1 de plus CMonthView New event - + Nouvel événement New Event - + Nouvel événement CMonthWindow Y - + A CMyScheduleView My Event - + Mon événement OK button - + OK Delete button - + Supprimer Edit button - + Éditer CPushButton New event type - + Nouveau type d'événement CScheduleDlg New Event - + Nouvel évènement Edit Event - + Éditer l'événement End time must be greater than start time - + L'heure de fin doit être supérieure à l'heure de début OK button - + OK Never - + Jamais At time of event - + Au moment de l'événement 15 minutes before - + 15 minutes avant 30 minutes before - + 30 minutes avant 1 hour before - + 1 heure avant 1 day before - + 1 jour avant 2 days before - + 2 jours avant 1 week before - + 1 semaine avant On start day (9:00 AM) - + Le jour de début (9h00) time(s) - + heure(s) Enter a name please - + Entrer un nom s'il vous plait The name can not only contain whitespaces - + Le nom ne peut pas contenir que des espaces blancs Type: - + Type : Description: - + Description : All Day: - + Toute la journée : Starts: - + Débuts : Ends: - + Fin : Remind Me: - + Rappelez-moi : Repeat: - + Répéter : End Repeat: - + Fin de la répétition : Calendar account: - + Compte de calendrier : Calendar account - + Compte de calendrier Type - + Type Description - + Description All Day - + Toute la journée Time: - + Temps : Time - + Temps Solar - + Solaire Lunar - + Lunaire Starts - + Débuts Ends - + Fin Remind Me - + Rappelez-moi Repeat - + Répéter Daily - + Journalier Weekdays - + Jours de la semaine Weekly - + Hebdomadaire Monthly - + Mensuel Yearly - + Annuel End Repeat - + Terminer la répétition After - + Après On - + Sur Cancel button - + Annuler Save button - + Sauvegarder CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Toutes les occurrences d'un événement répétitif doivent avoir le même statut toute la journée. Do you want to change all occurrences? - + Voulez-vous modifier toutes les occurrences ? Cancel button - + Annuler Change All - + Tout changer You are changing the repeating rule of this event. - + Vous modifiez la règle de répétition de cet événement. You are deleting an event. - + Vous êtes en train de supprimer un événement. Are you sure you want to delete this event? - + Êtes-vous sûr de vouloir supprimer cet événement ? Delete button - + Supprimer Do you want to delete all occurrences of this event, or only the selected occurrence? - + Voulez-vous supprimer toutes les occurrences de cet événement ou uniquement l'occurrence sélectionnée ? Delete All - + Tout supprimer Delete Only This Event - + Supprimer uniquement cet événement Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Voulez-vous supprimer cet événement et toutes les occurrences futures de cet événement, ou uniquement l'occurrence sélectionnée ? Delete All Future Events - + Supprimer tous les événements futurs You are changing a repeating event. - + Vous modifiez un événement récurrent. Do you want to change only this occurrence of the event, or all occurrences? - + Voulez-vous modifier uniquement cette occurrence de l'événement ou toutes les occurrences ? All - + Tout Only This Event - + Seulement cet événement Do you want to change only this occurrence of the event, or this and all future occurrences? - + Voulez-vous modifier uniquement cette occurrence de l'événement, ou cette occurrence et toutes les occurrences futures ? All Future Events - + Tous les événements futurs You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Vous avez sélectionné un mois bissextile, et sera rappelé selon les règles du calendrier lunaire. OK button - + OK CScheduleSearchDateItem Y - + A M - + M D - + J CScheduleSearchItem Edit - + Éditer Delete - + Supprimer All Day - + Toute la journée CScheduleSearchView No search results - + Aucun résultat trouvé CScheduleView ALL DAY - + TOUTE LA JOURNÉE CSettingDialog - Sunday - - - - Monday - - - - 24-hour clock - - - - 12-hour clock + import ICS file Manual - + Manuel 15 mins - + 15 min 30 mins - + 30 min 1 hour - + 1 heure 24 hours - + 24 heures Sync Now - + Synchroniser maintenant Last sync + Dernière synchronisation + + + Monday + Lundi + + + Tuesday + Mardi + + + Wednesday + Mercredi + + + Thursday + Jeudi + + + Friday + Vendredi + + + Saturday + Samedi + + + Sunday + Dimanche + + + 12-hour clock + horloge 12 heures + + + 24-hour clock + Horloge 24 heures + + + Please go to the <a href='/'>Control Center</a> to change settings @@ -538,143 +566,143 @@ CTimeEdit (%1 mins) - + (%1 min) (%1 hour) - + (%1 heure) (%1 hours) - + (%1 heures) CTitleWidget Y - + A M - + M W - + W D - + J Search events and festivals - + Rechercher des événements et des festivals CWeekWidget Sun - + Dim Mon - + Lun Tue - + Mar Wed - + Mer Thu - + Jeu Fri - + Ven Sat - + Sam CWeekWindow Week - + Semaine Y - + A CYearScheduleView All Day - + Toute la journée No event - + Pas d'évènement CYearWindow Y - + A CalendarWindow Calendar - + Calendrier Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Le calendrier est un outil pour afficher les dates, et aussi un planificateur quotidien intelligent pour planifier toutes les choses de la vie. Calendarmainwindow Calendar - + Calendrier Manage - + Gérer Privacy Policy - + Politique de confidentialité Syncing... - + Synchronisation... Sync successful - + Synchronisation réussie Sync failed, please try later - + Échec de la synchronisation, veuillez réessayer plus tard CenterWidget All Day - + Toute la journée @@ -705,11 +733,11 @@ Remind me tomorrow - Rappellez-le moi demain + Rappel demain Remind me later - Rappelez-le moi plus tard + Rappeler plus tard 15 mins later @@ -744,91 +772,99 @@ DragInfoGraphicsView Edit - + Éditer Delete - + Supprimer New event - + Nouvel événement New Event - + Nouvel événement JobTypeListView - You are deleting an event type. + export - All events under this type will be deleted and cannot be recovered. + import ICS file + + You are deleting an event type. + Vous êtes en train de supprimer un type d'événement. + + + All events under this type will be deleted and cannot be recovered. + Tous les événements de ce type seront supprimés et ne pourront pas être récupérés. + Cancel button - + Annuler Delete button - + Supprimer QObject Account settings - + Paramètres du compte Account - + Compte Select items to be synced - + Sélectionnez les éléments à synchroniser Events - + Événements General settings - + Paramètres généraux Sync interval - + Intervalle de synchronisation Manage calendar - + Gérer le calendrier Calendar account - + Compte de calendrier Event types - + Type d'événement General - + Général First day of week - + Premier jour de la semaine Time - + Temps @@ -836,7 +872,7 @@ Today Return - Aujourd'hui + Aujourd'hui @@ -844,86 +880,94 @@ Today Return Today - Aujourd'hui + Aujourd'hui ScheduleTypeEditDlg New event type - + Nouveau type d'événement Edit event type + Éditer le type d'événement + + + Import ICS file Name: - + Nom : Color: + Couleur : + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: Cancel button - + Annuler Save button - + Sauvegarder The name can not only contain whitespaces - + Le nom ne peut pas contenir que des espaces blancs Enter a name please - + Entrez un nom s'il vous plait Shortcut Help - + Aide Delete event - + Supprimer l'événement Copy - + Copier Cut - + Couper Paste - + Coller Delete - + Supprimer Select all - + Tout sélectionner SidebarCalendarWidget Y - + A M - + M @@ -931,7 +975,7 @@ Go button - + Aller @@ -939,19 +983,19 @@ Sign In button - + S'identifier Sign Out button - + Se déconnecter YearFrame Y - + A @@ -959,7 +1003,7 @@ Today Today - Aujourd'hui + Aujourd'hui diff --git a/translations/dde-calendar-service_gl_ES.ts b/translations/dde-calendar-service_gl_ES.ts index 9e0d2619..54b9d51c 100644 --- a/translations/dde-calendar-service_gl_ES.ts +++ b/translations/dde-calendar-service_gl_ES.ts @@ -35,63 +35,63 @@ CColorPickerWidget Color - + Cor Cancel button - + Cancelar Save button - + Gardar CDayMonthView Monday - + Luns Tuesday - + Martes Wednesday - + Mércores Thursday - + Xoves Friday - + Venres Saturday - + Sábado Sunday - + Domingo CDayWindow Y - + Y M - + M D - + D Lunar @@ -102,54 +102,54 @@ CGraphicsView New Event - + Novo evento CMonthScheduleNumItem %1 more - + %1 máis CMonthView New event - + Novo evento New Event - + Novo evento CMonthWindow Y - + Y CMyScheduleView My Event - + O meu evento OK button - + Aceptar Delete button - + Eliminar Edit button - + Editar @@ -163,60 +163,60 @@ CScheduleDlg New Event - + Novo evento Edit Event - + Editar evento End time must be greater than start time - + O tempo de finalización ten de ser maior que o de inicio OK button - + Aceptar Never - + Nunca At time of event - + Na hora do evento 15 minutes before - + 15 minutos antes 30 minutes before - + 30 minutos antes 1 hour before - + 1 hora antes 1 day before - + 1 día antes 2 days before - + 2 días antes 1 week before - + 1 semana antes On start day (9:00 AM) - + Ao comezo do día (9:00 AM) time(s) - + vez(ces) Enter a name please @@ -228,35 +228,35 @@ Type: - + Tipo: Description: - + Descrición: All Day: - + Todo o día: Starts: - + Comeza: Ends: - + Remata: Remind Me: - + Lembrarme: Repeat: - + Repetir: End Repeat: - + Fin da repetición: Calendar account: @@ -268,15 +268,15 @@ Type - + Tipo Description - + Descrición All Day - + Todo o día Time: @@ -296,142 +296,142 @@ Starts - + Comeza Ends - + Remata Remind Me - + Lembrarme Repeat - + Repetir Daily - + Diariamente Weekdays - + Días da semana Weekly - + Semanalmente Monthly - + Mensualmente Yearly - + Anualmente End Repeat - + Finalizar a repetición After - + Despois On - + O Cancel button - + Cancelar Save button - + Gardar CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Todas as ocorrencias dun evento repetitivo teñen de ter o mesmo estado durante todo o día. Do you want to change all occurrences? - + Queres cambiar todas as ocorrencias? Cancel button - + Cancelar Change All - + Cambiar todo You are changing the repeating rule of this event. - + Estás a cambiar a regra de repetición deste evento. You are deleting an event. - + Estás eliminando un evento. Are you sure you want to delete this event? - + Tes a certeza de querer eliminar este evento? Delete button - + Eliminar Do you want to delete all occurrences of this event, or only the selected occurrence? - + Queres eliminar todas as ocorrencias deste evento, ou só a ocorrencia seleccionada? Delete All - + Eliminar todo Delete Only This Event - + Eliminar só este evento Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Queres eliminar esta e todas as vindeiras ocorrencias deste evento, ou só a ocorrencia seleccionada? Delete All Future Events - + Eliminar todo os eventos futuros You are changing a repeating event. - + Estás a cambiar un evento repetitivo. Do you want to change only this occurrence of the event, or all occurrences? - + Queres cambiar só esta ocorrencia deste evento, ou todas as ocorrencias? All - + Todo Only This Event - + Só este evento Do you want to change only this occurrence of the event, or this and all future occurrences? - + Queres cambiar só esta ocorrencia deste evento, ou esta e todas as vindeiras ocorrencias? All Future Events - + Todos os eventos futuros You have selected a leap month, and will be reminded according to the rules of the lunar calendar. @@ -440,97 +440,125 @@ OK button - + Aceptar CScheduleSearchDateItem Y - + Y M - + M D - + D CScheduleSearchItem Edit - + Editar Delete - + Eliminar All Day - + Todo o día CScheduleSearchView No search results - + Sen resultados CScheduleView ALL DAY - + TODO O DÍA CSettingDialog - Sunday + import ICS file - Monday - + Manual + Manual - 24-hour clock + 15 mins - 12-hour clock + 30 mins - Manual - + 1 hour + 1 hora - 15 mins + 24 hours - 30 mins + Sync Now - 1 hour + Last sync - 24 hours + Monday + Luns + + + Tuesday + Martes + + + Wednesday + Mércores + + + Thursday + Xoves + + + Friday + Venres + + + Saturday + Sábado + + + Sunday + Domingo + + + 12-hour clock - Sync Now + 24-hour clock - Last sync + Please go to the <a href='/'>Control Center</a> to change settings @@ -553,19 +581,19 @@ CTitleWidget Y - + Y M - + M W - + W D - + D Search events and festivals @@ -576,78 +604,78 @@ CWeekWidget Sun - + Dom Mon - + Lun Tue - + Mar Wed - + Mér Thu - + Xov Fri - + Ven Sat - + Sáb CWeekWindow Week - + Semana Y - + Y CYearScheduleView All Day - + Todo o día No event - + Sen evento CYearWindow Y - + Y CalendarWindow Calendar - + Calendario Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + O calendario é unha ferramenta para ver as datas e tamén un planificador diario intelixente para programar todas as cousas da vida. Calendarmainwindow Calendar - + Calendario Manage @@ -655,11 +683,11 @@ Privacy Policy - + Política de privacidade Syncing... - + Sincronizando... Sync successful @@ -674,7 +702,7 @@ CenterWidget All Day - + Todo o día @@ -744,23 +772,31 @@ DragInfoGraphicsView Edit - + Editar Delete - + Eliminar New event - + Novo evento New Event - + Novo evento JobTypeListView + + export + + + + import ICS file + + You are deleting an event type. @@ -772,12 +808,12 @@ Cancel button - + Cancelar Delete button - + Eliminar @@ -788,7 +824,7 @@ Account - + Conta Select items to be synced @@ -820,7 +856,7 @@ General - + Xeral First day of week @@ -836,7 +872,7 @@ Today Return - Hoxe + Hoxe @@ -844,7 +880,7 @@ Today Return Today - Hoxe + Hoxe @@ -858,22 +894,30 @@ - Name: + Import ICS file + + Name: + Nome: + Color: + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + Cancel button - + Cancelar Save button - + Gardar The name can not only contain whitespaces @@ -888,42 +932,42 @@ Shortcut Help - + Axuda Delete event - + Eliminar evento Copy - + Copiar Cut - + Cortar Paste - + Pegar Delete - + Eliminar Select all - + Seleccionar todo SidebarCalendarWidget Y - + Y M - + M @@ -939,19 +983,19 @@ Sign In button - + Iniciar sesión Sign Out button - + Pechar sesión YearFrame Y - + Y @@ -959,7 +1003,7 @@ Today Today - Hoxe + Hoxe diff --git a/translations/dde-calendar-service_hi_IN.ts b/translations/dde-calendar-service_hi_IN.ts index 21eb5690..80183dcc 100644 --- a/translations/dde-calendar-service_hi_IN.ts +++ b/translations/dde-calendar-service_hi_IN.ts @@ -35,59 +35,59 @@ CColorPickerWidget Color - + रंग Cancel button - + रद्द करें Save button - + संचित करें CDayMonthView Monday - + सोमवार Tuesday - + मंगलवार Wednesday - + बुधवार Thursday - + गुरुवार Friday - + शुक्रवार Saturday - + शनिवार Sunday - + रविवार CDayWindow Y - + Y M - + M D @@ -116,7 +116,7 @@ CMonthView New event - + नया इवेंट New Event @@ -127,7 +127,7 @@ CMonthWindow Y - + Y @@ -139,17 +139,17 @@ OK button - + ठीक है Delete button - + हटाएँ Edit button - + संपादित करें @@ -176,11 +176,11 @@ OK button - + ठीक है Never - + कभी नहीं At time of event @@ -228,7 +228,7 @@ Type: - + प्रकार : Description: @@ -268,15 +268,15 @@ Type - + प्रकार Description - + विवरण All Day - + पूरे दिन Time: @@ -308,7 +308,7 @@ Repeat - + दोहराएँ Daily @@ -340,17 +340,17 @@ On - + चालू Cancel button - + रद्द करें Save button - + संचित करें @@ -366,7 +366,7 @@ Cancel button - + रद्द करें Change All @@ -378,16 +378,16 @@ You are deleting an event. - + आप इस इवेंट को मिटाने वाले हैं Are you sure you want to delete this event? - + क्या आप निश्चित रूप से इस इवेंट को मिटाना करना चाहते है Delete button - + हटाएँ Do you want to delete all occurrences of this event, or only the selected occurrence? @@ -399,7 +399,7 @@ Delete Only This Event - + केवल इसी इवेंट को मिटाये Do you want to delete this and all future occurrences of this event, or only the selected occurrence? @@ -440,18 +440,18 @@ OK button - + ठीक है CScheduleSearchDateItem Y - + Y M - + M D @@ -462,22 +462,22 @@ CScheduleSearchItem Edit - + संपादित करें Delete - + हटाएँ All Day - + पूरे दिन CScheduleSearchView No search results - + खोज का कोई परिणाम नहीं मिला @@ -490,47 +490,75 @@ CSettingDialog - Sunday + import ICS file - Monday - + Manual + मैनुअल - 24-hour clock + 15 mins - 12-hour clock + 30 mins - Manual - + 1 hour + 1 घण्टा - 15 mins + 24 hours - 30 mins + Sync Now - 1 hour + Last sync - 24 hours + Monday + सोमवार + + + Tuesday + मंगलवार + + + Wednesday + बुधवार + + + Thursday + गुरुवार + + + Friday + शुक्रवार + + + Saturday + शनिवार + + + Sunday + रविवार + + + 12-hour clock - Sync Now + 24-hour clock - Last sync + Please go to the <a href='/'>Control Center</a> to change settings @@ -553,11 +581,11 @@ CTitleWidget Y - + Y M - + M W @@ -576,31 +604,31 @@ CWeekWidget Sun - + रवि Mon - + सोम Tue - + मंगल Wed - + बुध Thu - + गुरु Fri - + शुक्र Sat - + शनि @@ -611,14 +639,14 @@ Y - + Y CYearScheduleView All Day - + पूरे दिन No event @@ -629,14 +657,14 @@ CYearWindow Y - + Y CalendarWindow Calendar - + दिनदर्शिका Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. @@ -647,7 +675,7 @@ Calendarmainwindow Calendar - + दिनदर्शिका Manage @@ -674,7 +702,7 @@ CenterWidget All Day - + पूरे दिन @@ -744,15 +772,15 @@ DragInfoGraphicsView Edit - + संपादित करें Delete - + हटाएँ New event - + नया इवेंट New Event @@ -761,6 +789,14 @@ JobTypeListView + + export + + + + import ICS file + + You are deleting an event type. @@ -772,12 +808,12 @@ Cancel button - + रद्द करें Delete button - + हटाएँ @@ -820,7 +856,7 @@ General - + सामान्य First day of week @@ -836,7 +872,7 @@ Today Return - आज + आज @@ -844,7 +880,7 @@ Today Return Today - आज + आज @@ -858,22 +894,30 @@ - Name: + Import ICS file + + Name: + नाम : + Color: + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + Cancel button - + रद्द करें Save button - + संचित करें The name can not only contain whitespaces @@ -888,7 +932,7 @@ Shortcut Help - + सहायता Delete event @@ -896,34 +940,34 @@ Copy - + कॉपी करें Cut - + काटें Paste - + चिपकाएँ Delete - + हटाएँ Select all - + सबको चुनें SidebarCalendarWidget Y - + Y M - + M @@ -939,19 +983,19 @@ Sign In button - + साइन इन Sign Out button - + साइन आउट YearFrame Y - + Y @@ -959,7 +1003,7 @@ Today Today - आज + आज diff --git a/translations/dde-calendar-service_hr.ts b/translations/dde-calendar-service_hr.ts index 49bb50f6..4066f501 100644 --- a/translations/dde-calendar-service_hr.ts +++ b/translations/dde-calendar-service_hr.ts @@ -9,7 +9,7 @@ Network error - + Mrežna greška Server exception @@ -35,63 +35,63 @@ CColorPickerWidget Color - + Boja Cancel button - + Otkaži Save button - + Spremi CDayMonthView Monday - + Ponedjeljak Tuesday - + Utorak Wednesday - + Srijeda Thursday - + Četvrtak Friday - + Petak Saturday - + Subota Sunday - + Nedjelja CDayWindow Y - + Y M - + M D - + D Lunar @@ -102,7 +102,7 @@ CGraphicsView New Event - + Novi događaj @@ -116,40 +116,40 @@ CMonthView New event - + Novi događaj New Event - + Novi događaj CMonthWindow Y - + Y CMyScheduleView My Event - + Moj događaj OK button - + U redu Delete button - + Obriši Edit button - + Uredi @@ -163,56 +163,56 @@ CScheduleDlg New Event - + Novi događaj Edit Event - + Uredi događaj End time must be greater than start time - + Vrijeme završetka mora biti veće od vremena početka OK button - + U redu Never - + Nikada At time of event - + U vrijeme događaja 15 minutes before - + 15 minuta prije 30 minutes before - + 30 minuta prije 1 hour before - + 1 sat prije 1 day before - + 1 dan prije 2 days before - + 2 dana prije 1 week before - + 1 tjedan prije On start day (9:00 AM) - + Na dan početka (9:00 AM) time(s) @@ -220,39 +220,39 @@ Enter a name please - + Molim unesite ime The name can not only contain whitespaces - + Ime ne može sadržavati samo razmake Type: - + Vrsta: Description: - + Opis: All Day: - + Cijeli dan: Starts: - + Započinje: Ends: - + Završava: Remind Me: - + Podsjeti me: Repeat: - + Ponovi: End Repeat: @@ -268,23 +268,23 @@ Type - + Vrsta Description - + Opis All Day - + Cijeli dan Time: - + Vrijeme: Time - + Vrijeme Solar @@ -296,39 +296,39 @@ Starts - + Počinje Ends - + Završava Remind Me - + Podsjeti me Repeat - + Ponovi Daily - + Dnevno Weekdays - + Dani vikenda Weekly - + Tjedno Monthly - + Mjesečno Yearly - + Godišnje End Repeat @@ -336,21 +336,21 @@ After - + Poslije On - + Uključeno Cancel button - + Otkaži Save button - + Spremi @@ -366,11 +366,11 @@ Cancel button - + Otkaži Change All - + Promijeni sve You are changing the repeating rule of this event. @@ -378,16 +378,16 @@ You are deleting an event. - + Brišete događaj. Are you sure you want to delete this event? - + Jeste li sigurni da želite izbrisati ovaj događaj? Delete button - + Obriši Do you want to delete all occurrences of this event, or only the selected occurrence? @@ -395,11 +395,11 @@ Delete All - + Obrišite sve Delete Only This Event - + Obrišite samo ovaj događaj Do you want to delete this and all future occurrences of this event, or only the selected occurrence? @@ -407,7 +407,7 @@ Delete All Future Events - + Obriši sve buduće događaje You are changing a repeating event. @@ -419,11 +419,11 @@ All - + Sve Only This Event - + Samo ovaj događaj Do you want to change only this occurrence of the event, or this and all future occurrences? @@ -431,7 +431,7 @@ All Future Events - + Svi budući događaji You have selected a leap month, and will be reminded according to the rules of the lunar calendar. @@ -440,97 +440,125 @@ OK button - + U redu CScheduleSearchDateItem Y - + Y M - + M D - + D CScheduleSearchItem Edit - + Uredi Delete - + Obriši All Day - + Cijeli dan CScheduleSearchView No search results - + Nema rezultata pretrage CScheduleView ALL DAY - + CIJELI DAN CSettingDialog - Sunday + import ICS file - Monday - + Manual + Ručno - 24-hour clock + 15 mins - 12-hour clock + 30 mins - Manual - + 1 hour + 1 sat - 15 mins + 24 hours - 30 mins + Sync Now - 1 hour + Last sync - 24 hours + Monday + Ponedjeljak + + + Tuesday + Utorak + + + Wednesday + Srijeda + + + Thursday + Četvrtak + + + Friday + Petak + + + Saturday + Subota + + + Sunday + Nedjelja + + + 12-hour clock - Sync Now + 24-hour clock - Last sync + Please go to the <a href='/'>Control Center</a> to change settings @@ -553,11 +581,11 @@ CTitleWidget Y - + Y M - + M W @@ -565,7 +593,7 @@ D - + D Search events and festivals @@ -576,67 +604,67 @@ CWeekWidget Sun - + Ned Mon - + Pon Tue - + Uto Wed - + Sri Thu - + Čet Fri - + Pet Sat - + Sub CWeekWindow Week - + Tjedan Y - + Y CYearScheduleView All Day - + Cijeli dan No event - + Nema događaja CYearWindow Y - + Y CalendarWindow Calendar - + Kalendar Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. @@ -647,7 +675,7 @@ Calendarmainwindow Calendar - + Kalendar Manage @@ -674,7 +702,7 @@ CenterWidget All Day - + Cijeli dan @@ -744,23 +772,31 @@ DragInfoGraphicsView Edit - + Uredi Delete - + Obriši New event - + Novi događaj New Event - + Novi događaj JobTypeListView + + export + + + + import ICS file + + You are deleting an event type. @@ -772,12 +808,12 @@ Cancel button - + Otkaži Delete button - + Obriši @@ -788,7 +824,7 @@ Account - + Račun Select items to be synced @@ -808,7 +844,7 @@ Manage calendar - + Upravljaj kalendarom Calendar account @@ -820,7 +856,7 @@ General - + Općenito First day of week @@ -828,7 +864,7 @@ Time - + Vrijeme @@ -836,7 +872,7 @@ Today Return - Danas + Danas @@ -844,7 +880,7 @@ Today Return Today - Danas + Danas @@ -858,72 +894,80 @@ - Name: + Import ICS file + + Name: + Ime: + Color: + Boja: + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: Cancel button - + Otkaži Save button - + Spremi The name can not only contain whitespaces - + Ime ne može sadržavati samo razmake Enter a name please - + Molim unesite ime Shortcut Help - + Pomoć Delete event - + Izbriši događaj Copy - + Kopiraj Cut - + Izreži Paste - + Zalijepi Delete - + Obriši Select all - + Odaberi sve SidebarCalendarWidget Y - + Y M - + M @@ -939,19 +983,19 @@ Sign In button - + Prijava Sign Out button - + Odjava YearFrame Y - + Y @@ -959,7 +1003,7 @@ Today Today - Danas + Danas diff --git a/translations/dde-calendar-service_hu.ts b/translations/dde-calendar-service_hu.ts index cc5728e2..fe66d7ff 100644 --- a/translations/dde-calendar-service_hu.ts +++ b/translations/dde-calendar-service_hu.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + A szinkronizálás sikeres Network error - + Hálózati hiba Server exception - + Szerver kivétel Storage full - + A tárhely megtelt AccountManager Local account - + Helyi fiók Event types - + Esemény típusok CColorPickerWidget Color - + Szín Cancel button - + Mégsem Save button - + Mentés CDayMonthView Monday - + Hétfő Tuesday - + Kedd Wednesday - + Szerda Thursday - + Csütörtök Friday - + Péntek Saturday - + Szombat Sunday - + Vasárnap CDayWindow Y - + Év M - + Hónap D - + Nap Lunar - + Hold naptár CGraphicsView New Event - + Új esemény CMonthScheduleNumItem %1 more - + %1 továbbiak CMonthView New event - + Új esemény New Event - + Új esemény CMonthWindow Y - + Év CMyScheduleView My Event - + Eseményeim OK button - + OK Delete button - + Törlés Edit button - + Szerkesztés CPushButton New event type - + Új esemény típusa CScheduleDlg New Event - + Új esemény Edit Event - + Esemény szerkesztése End time must be greater than start time - + A befejezés időpontja csak a kezdés időpontja után lehetséges OK button - + OK Never - + Soha At time of event - + Az esemény időpontjában 15 minutes before - + 15 perccel előtte 30 minutes before - + 30 perccel előtte 1 hour before - + 1 órával előtte 1 day before - + 1 nappal előtte 2 days before - + 2 nappal előtte 1 week before - + 1 héttel előtte On start day (9:00 AM) - + Esemény kezdete napján (De. 09:00) time(s) - + Időpont(ok) Enter a name please - + Kérjük adjon meg egy nevet The name can not only contain whitespaces - + A név nem tartalmazhat csak szóközöket Type: - + Típus: Description: - + Leírás: All Day: - + Egész nap: Starts: - + Kezdés: Ends: - + Befejezés: Remind Me: - + Emlékeztessen: Repeat: - + Ismétlés: End Repeat: - + Ismétlés vége: Calendar account: - + Naptár fiók: Calendar account - + Naptár fiók Type - + Típus Description - + Leírás All Day - + Egész nap Time: - + Idő: Time - + Idő Solar - + Nap Lunar - + Hold Starts - + Kezdés Ends - + Befejezés Remind Me - + Emlékeztessen Repeat - + Ismétlés Daily - + Naponta Weekdays - + Hétköznapokon Weekly - + Hetente Monthly - + Havonta Yearly - + Évente End Repeat - + Ismétlés vége After - + Utána On - + Ekkor Cancel button - + Mégsem Save button - + Mentés CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Az ismétlődő események valamennyiének "egész nap" állapotúnak kell lennie. Do you want to change all occurrences? - + Minden alkalmat módosítani szeretne? Cancel button - + Mégsem Change All - + Összes módosítása You are changing the repeating rule of this event. - + Módosítja az esemény ismétlődési szabályát. You are deleting an event. - + Ön töröl egy eseményt. Are you sure you want to delete this event? - + Biztosan törli ezt az eseményt? Delete button - + Törlés Do you want to delete all occurrences of this event, or only the selected occurrence? - + Törlöni szeretné az esemény összes előfordulását, vagy csak a kiválasztott eseményt? Delete All - + Összes törlése Delete Only This Event - + Csak ezen esemény törlése Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Törölni szeretné ezt, és az esemény összes jövőbeli előfordulását, vagy csak a kiválasztott eseményt? Delete All Future Events - + Összes jövőbeli esemény törlése You are changing a repeating event. - + Ön egy ismétlődő eseményt módosít. Do you want to change only this occurrence of the event, or all occurrences? - + Csak az esemény ezen előfordulását akarja megváltoztatni, vagy az összes jövőbeni eseményt? All - + Összes Only This Event - + Csak ezen esemény Do you want to change only this occurrence of the event, or this and all future occurrences? - + Csak az esemény ezen előfordulását akarja megváltoztatni, vagy ezt és az összes jövőbeni eseményt? All Future Events - + Összes jövőbeli esemény You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Szökőhónap lett kiválasztva, ezért a holdnaptár szabályai fognak érvényesülni. OK button - + OK CScheduleSearchDateItem Y - + Év M - + Hónap D - + Nap CScheduleSearchItem Edit - + Szerkesztés Delete - + Törlés All Day - + Egész nap CScheduleSearchView No search results - + Nincs keresési eredmény CScheduleView ALL DAY - + Egész nap CSettingDialog - Sunday - + Manual + Manuális - Monday - + 15 mins + 15 perc - 24-hour clock - + 30 mins + 30 perc - 12-hour clock - + 1 hour + 1 óra - Manual - + 24 hours + 24 óra - 15 mins - + Sync Now + Szinkronizálás most - 30 mins - + Last sync + Utolsó szinkronizálás - 1 hour - + Monday + Hétfő - 24 hours - + Sunday + Vasárnap - Sync Now - + 12-hour clock + 12 órás óra formátum - Last sync - + 24-hour clock + 24 órás óra formátum + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 perc) (%1 hour) - + (%1 óra) (%1 hours) - + (%1 óra) CTitleWidget Y - + Éves M - + Havi W - + Hét D - + Napi Search events and festivals - + Események és fesztiválok keresése CWeekWidget Sun - + V. Mon - + H. Tue - + K. Wed - + Sze. Thu - + Cs. Fri - + P. Sat - + Szo. CWeekWindow Week - + Hét Y - + Év CYearScheduleView All Day - + Egész nap No event - + Nincs esemény CYearWindow Y - + Év CalendarWindow Calendar - + Naptár Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + A Naptár egy eszköz a dátumok megtekintésére, valamint egy intelligens napi tervező az élet minden dolgának ütemezéséhez. Calendarmainwindow Calendar - + Naptár Manage - + Kezelés Privacy Policy - + Adatvédelmi irányelvek Syncing... - + Szinkronizálás... Sync successful - + A szinkronizálás sikeres Sync failed, please try later - + A szinkronizálás sikertelen, kérjük próbálja később CenterWidget All Day - + Egész nap @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Szerkesztés Delete - + Törlés New event - + Új esemény New Event - + Új esemény JobTypeListView You are deleting an event type. - + Ön töröl egy eseménytípust. All events under this type will be deleted and cannot be recovered. - + Az összes ilyen típusú esemény törlődik, és nem állítható helyre. Cancel button - + Mégsem Delete button - + Törlés QObject Account settings - + Felhasználói fiók beállítások Account - + Felhasználói fiók Select items to be synced - + Válassza ki a szinkronizálni kívánt elemeket Events - + Események General settings - + Általános beállítások Sync interval - + Szinkronizálási időintervallum Manage calendar - + Naptár kezelése Calendar account - + Naptár fiók Event types - + Esemény típusok General - + Általános First day of week - + A hét első napja Time - + Idő @@ -836,7 +854,7 @@ Today Return - Ma + Ma @@ -844,86 +862,86 @@ Today Return Today - Ma + Ma ScheduleTypeEditDlg New event type - + Új esemény típusa Edit event type - + Eseménytípus szerkesztése Name: - + Név: Color: - + Szín: Cancel button - + Mégsem Save button - + Mentés The name can not only contain whitespaces - + A név nem tartalmazhat csak szóközöket Enter a name please - + Kérjük adjon meg egy nevet Shortcut Help - + Segítség Delete event - + Esemény törlése Copy - + Másolás Cut - + Kivágás Paste - + Beillesztés Delete - + Törlés Select all - + Összes kijelölése SidebarCalendarWidget Y - + Év M - + Hónap @@ -931,7 +949,7 @@ Go button - + Ugrás @@ -939,19 +957,19 @@ Sign In button - + Bejelentkezés Sign Out button - + Kijelentkezés YearFrame Y - + Év @@ -959,7 +977,7 @@ Today Today - Ma + Ma - + \ No newline at end of file diff --git a/translations/dde-calendar-service_it.ts b/translations/dde-calendar-service_it.ts index a4ad58ba..7b04610f 100644 --- a/translations/dde-calendar-service_it.ts +++ b/translations/dde-calendar-service_it.ts @@ -1,680 +1,699 @@ - - - + AccountItem Sync successful - + Sincronizzazione riuscita Network error - + Errore rete Server exception - + Eccezione del server Storage full - + Memoria piena AccountManager Local account - + Account locale Event types - + Tipi di evento CColorPickerWidget Color - + Colore Cancel button - + Annulla Save button - + Salva CDayMonthView Monday - + Lunedì Tuesday - + Martedì Wednesday - + Mercoledì Thursday - + Giovedì Friday - + Venerdì Saturday - + Sabato Sunday - + Domenica CDayWindow Y - + Y M - + M D - + D Lunar - + Lunare CGraphicsView New Event - + Nuovo evento CMonthScheduleNumItem %1 more - + %1 in più CMonthView New event - + Nuovo evento New Event - + Nuovo evento CMonthWindow Y - + Y CMyScheduleView My Event - + I miei eventi OK button - + OK Delete button - + Elimina Edit button - + Modifica CPushButton New event type - + Nuovo tipo di evento CScheduleDlg New Event - + Nuovo evento Edit Event - + Modifica evento End time must be greater than start time - + La data di fine deve essere maggiore di quella di inizio OK button - + OK Never - + Mai At time of event - + All'ora dell'evento 15 minutes before - + 15 minuti prima 30 minutes before - + 30 minuti prima 1 hour before - + 1 ora prima 1 day before - + 1 giorno prima 2 days before - + 2 giorni prima 1 week before - + 1 settimana prima On start day (9:00 AM) - + All'inizio della giornata (9:00 AM) time(s) - + volta(e) Enter a name please - + Inserisci un nome The name can not only contain whitespaces - + Il nome non può contenere solo spazi bianchi Type: - + Tipo: Description: - + Descrizione: All Day: - + Tutto il giorno: Starts: - + Inizio: Ends: - + Fine: Remind Me: - + Promemoria: Repeat: - + Ripetizione: End Repeat: - + Fine ripetizione: Calendar account: - + Account calendario: Calendar account - + Account calendario Type - + Tipo Description - + Descrizione All Day - + Tutto il giorno Time: - + Ora: Time - + Ora Solar - + Solare Lunar - + Lunare Starts - + Inizio Ends - + Fine Remind Me - + Promemoria Repeat - + Ripetizione Daily - + Giornaliera Weekdays - + Giorni della settimana Weekly - + Settimanale Monthly - + Mensile Yearly - + Annuale End Repeat - + Fine ripetizione After - + Dopo On - + Acceso Cancel button - + Annulla Save button - + Salva CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Tutte le occorrenze di una ripetizione devono avere i medesimi parametri. Do you want to change all occurrences? - + Desideri modificare tutte le occorrenze? Cancel button - + Annulla Change All - + Cambia tutte You are changing the repeating rule of this event. - + Stai cambiando le regole di pianificazione di questo evento. You are deleting an event. - + Stai eliminando un evento. Are you sure you want to delete this event? - + Sicuro di voler eliminare questo evento? Delete button - + Elimina Do you want to delete all occurrences of this event, or only the selected occurrence? - + Desideri eliminare tutte le occorrenze di questo evento, oppure solo quella selezionata? Delete All - + Eliminale tutte Delete Only This Event - + Elimina solo questo evento Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Desideri eliminare questa e tutte le occorrenze successive di questo evento, oppure solo quella selezionata? Delete All Future Events - + Tutte le occorrenze future You are changing a repeating event. - + Stai modificando un evento ripetitivo Do you want to change only this occurrence of the event, or all occurrences? - + Desideri modificare solo questa occorrenza dell'evento, o tutte quelle ad esso associate? All - + Tutti Only This Event - + Solo questo evento Do you want to change only this occurrence of the event, or this and all future occurrences? - + Desideri modificare solo il singolo evento,oppure tutte le future ripetizioni? All Future Events - + Tutte le future ripetizioni You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Hai selezionato un mese bisestile e ti verrà ricordato secondo le regole del calendario lunare. OK button - + OK CScheduleSearchDateItem Y - + Y M - + M D - + D CScheduleSearchItem Edit - + Modifica Delete - + Elimina All Day - + Tutto il giorno CScheduleSearchView No search results - + Nessun risultato disponibile CScheduleView ALL DAY - + Tutto il giorno CSettingDialog - Sunday - + Manual + Manuale - Monday - + 15 mins + 15 minuti - 24-hour clock - + 30 mins + 30 minuti - 12-hour clock - + 1 hour + 1 ora - Manual - + 24 hours + 24 ore - 15 mins - + Sync Now + Sincronizza ora - 30 mins - + Last sync + Ultima sincronizzazione - 1 hour - + Monday + Lunedì - 24 hours - + Sunday + Domenica - Sync Now - + 12-hour clock + Orologio 12 ore - Last sync - + 24-hour clock + Orologio 24 ore + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 min) (%1 hour) - + (%1 ora) (%1 hours) - + (%1 ore) CTitleWidget Y - + A M - + M W - + S D - + G Search events and festivals - + Cerca eventi CWeekWidget Sun - + Dom Mon - + Lun Tue - + Mar Wed - + Mer Thu - + Gio Fri - + Ven Sat - + Sab CWeekWindow Week - + Settimana Y - + Y CYearScheduleView All Day - + Tutto il giorno No event - + Nessun evento CYearWindow Y - + Y CalendarWindow Calendar - + Calendario Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Calendario è uno strumento per visualizzare il calendario ma anche per pianificare in modo intelligente tutti gli eventi della propria vita quotidiana. +Localizzazione italiana a cura di Massimo A. Carofano. Calendarmainwindow Calendar - + Calendario Manage - + Gestisci Privacy Policy - + Privacy Policy Syncing... - + Sincronizzazione... Sync successful - + Sincronizzazione riuscita Sync failed, please try later - + Sincronizzazione fallita, riprova più tardi CenterWidget All Day - + Tutto il giorno @@ -744,91 +763,91 @@ DragInfoGraphicsView Edit - + Modifica Delete - + Elimina New event - + Nuovo evento New Event - + Nuovo evento JobTypeListView You are deleting an event type. - + Stai eliminando un tipo di evento. All events under this type will be deleted and cannot be recovered. - + Tutti gli eventi di questo tipo verranno eliminati e non potranno essere recuperati. Cancel button - + Annulla Delete button - + Elimina QObject Account settings - + Impostazioni account Account - + Account Select items to be synced - + Seleziona elementi da sincronizzare Events - + Eventi General settings - + Impostazioni generali Sync interval - + Intervallo di sincronizzazione Manage calendar - + Gestisci calendario Calendar account - + Account calendario Event types - + Tipi di evento General - + Generale First day of week - + Primo giorno della settimana Time - + Ora @@ -836,7 +855,7 @@ Today Return - Oggi + Oggi @@ -844,86 +863,86 @@ Today Return Today - Oggi + Oggi ScheduleTypeEditDlg New event type - + Nuovo tipo di evento Edit event type - + Modifica tipo di evento Name: - + Nome: Color: - + Colore: Cancel button - + Annulla Save button - + Salva The name can not only contain whitespaces - + Il nome non può contenere solo spazi bianchi Enter a name please - + Inserisci un nome Shortcut Help - + Aiuto Delete event - + Elimina evento Copy - + Copia Cut - + Taglia Paste - + Incolla Delete - + Elimina Select all - + Seleziona tutto SidebarCalendarWidget Y - + A M - + M @@ -931,7 +950,7 @@ Go button - + Vai @@ -939,19 +958,19 @@ Sign In button - + Login Sign Out button - + Logout YearFrame Y - + Y @@ -959,7 +978,7 @@ Today Today - Oggi + Oggi - + \ No newline at end of file diff --git a/translations/dde-calendar-service_ka.ts b/translations/dde-calendar-service_ka.ts index d2e2eb48..74cc7e50 100644 --- a/translations/dde-calendar-service_ka.ts +++ b/translations/dde-calendar-service_ka.ts @@ -40,58 +40,58 @@ Cancel button - + გაუქმება Save button - + შენახვა CDayMonthView Monday - + ორშაბათი Tuesday - + სამშაბათი Wednesday - + ოთხშაბათი Thursday - + ხუთშაბათი Friday - + პარასკევი Saturday - + შაბათი Sunday - + კვირა CDayWindow Y - + M - + D - + Lunar @@ -102,54 +102,54 @@ CGraphicsView New Event - + ახალი ივენთი CMonthScheduleNumItem %1 more - + %1 მეტი CMonthView New event - + ახალი ივენთი New Event - + ახალი ივენთი CMonthWindow Y - + CMyScheduleView My Event - + ჩემი ივენთები OK button - + OK Delete button - + წაშლა Edit button - + რედაქტირება @@ -163,60 +163,60 @@ CScheduleDlg New Event - + ჩემი ივენთები Edit Event - + ივენთის რედაქტირება End time must be greater than start time - + დასრულების დრო უნდა აღემატებოდეს დაწყების დროს OK button - + OK Never - + არასდროს At time of event - + ივენთის სრული დრო 15 minutes before - + 15 წუთით ადრე 30 minutes before - + 30 წუთით ადრე 1 hour before - + 1 საათით ადრე 1 day before - + 1 დღით ადრე 2 days before - + 2 დღით ადრე 1 week before - + 1 კვირით ადრე On start day (9:00 AM) - + დრის დასაწყისში (9:00 AM) time(s) - + ჯერ Enter a name please @@ -228,35 +228,35 @@ Type: - + ტიპი: Description: - + აღწერა: All Day: - + მთელი დღე: Starts: - + დასაწყისი: Ends: - + დასასრული: Remind Me: - + შემახსენე: Repeat: - + გამეორება: End Repeat: - + გამეორების დასასრული: Calendar account: @@ -268,15 +268,15 @@ Type - + ტიპი Description - + აღწერა All Day - + ყველა დღე Time: @@ -296,142 +296,142 @@ Starts - + დასაწყისი Ends - + დასასრული Remind Me - + შემახსენე Repeat - + განმეორება Daily - + დღიური Weekdays - + ვიქენდი Weekly - + კვირეული Monthly - + თვიური Yearly - + წლიური End Repeat - + განმეორების დასასრული After - + შემდეგ On - + ზე Cancel button - + გაუქმება Save button - + შენახვა CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + ყველა განმეორებად მოვლენებს უნდა ჰქონდეს ყველა დღის სტატუს Do you want to change all occurrences? - + გსურთი მოვლენების შეცვლა? Cancel button - + გაუქმება Change All - + ყველას შეცვლა You are changing the repeating rule of this event. - + თქვენ ცვლით განმეორების რულებს აღნიშნული ივენთისთვის You are deleting an event. - + თქვენ შლით ივენთს Are you sure you want to delete this event? - + დაწრმუნებული ხართ, რომ გსურთ ამ ივენთის წაშლა? Delete button - + წაშლა Do you want to delete all occurrences of this event, or only the selected occurrence? - + გსრუთ აღნიშნული მოვლენების ივენთიდან ამოშლა? Delete All - + ყველას წაშლა Delete Only This Event - + მხოლოდ ამ ივენთის წაშლა Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + გსურთ წაშალოთ ყველა შემდგომი მოვლენა, თუ მხოლოდ არჩეული მოვლენები? Delete All Future Events - + ყველა მომდევნო მოვლენის წაშლა You are changing a repeating event. - + თქვენ ცვლით განმეორებად ივენთს Do you want to change only this occurrence of the event, or all occurrences? - + გსრუთ ყველა მოვლენის შეცვლა, თუ მხოლოდ მონიშნულის? All - + ყველა Only This Event - + მხოლოდ ეს ივენთი Do you want to change only this occurrence of the event, or this and all future occurrences? - + მხოლოდ ამ ერთი მოვლენის შეცვლა, თუ ყველა მომდევნო მოვლენის შეცვლა? All Future Events - + ყველა მომდევნო ივენთი You have selected a leap month, and will be reminded according to the rules of the lunar calendar. @@ -440,97 +440,125 @@ OK button - + OK CScheduleSearchDateItem Y - + M - + D - + CScheduleSearchItem Edit - + რედაქტირება Delete - + წაშლა All Day - + ყველა დღე CScheduleSearchView No search results - + არ არის ძებნის რეზულტატი CScheduleView ALL DAY - + ყველა დღე CSettingDialog - Sunday + import ICS file - Monday - + Manual + მექნიკურად - 24-hour clock + 15 mins - 12-hour clock + 30 mins - Manual + 1 hour - 15 mins + 24 hours - 30 mins + Sync Now - 1 hour + Last sync - 24 hours + Monday + ორშაბათი + + + Tuesday + სამშაბათი + + + Wednesday + ოთხშაბათი + + + Thursday + ხუთშაბათი + + + Friday + პარასკევი + + + Saturday + შაბათი + + + Sunday + კვირა + + + 12-hour clock - Sync Now + 24-hour clock - Last sync + Please go to the <a href='/'>Control Center</a> to change settings @@ -553,19 +581,19 @@ CTitleWidget Y - + M - + W - + D - + Search events and festivals @@ -607,47 +635,47 @@ CWeekWindow Week - + კვირა Y - + CYearScheduleView All Day - + ყველა დღე No event - + არ არის ივენთი CYearWindow Y - + CalendarWindow Calendar - + კალენდარი Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + კალენდარი არის ხელსაწყო თარიღების სანახავად და გრაფიკის დასაგეგმად Calendarmainwindow Calendar - + კალენდარი Manage @@ -674,7 +702,7 @@ CenterWidget All Day - + ყველა დღე @@ -744,23 +772,31 @@ DragInfoGraphicsView Edit - + რედაქტირება Delete - + წაშლა New event - + ახალი ივენთი New Event - + ახალი ივენთი JobTypeListView + + export + + + + import ICS file + + You are deleting an event type. @@ -772,12 +808,12 @@ Cancel button - + გაუქმება Delete button - + წაშლა @@ -820,7 +856,7 @@ General - + ძირითადი First day of week @@ -836,7 +872,7 @@ Today Return - დღეს + დღეს @@ -844,7 +880,7 @@ Today Return Today - დღეს + დღეს @@ -857,6 +893,10 @@ Edit event type + + Import ICS file + + Name: @@ -865,15 +905,19 @@ Color: + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + Cancel button - + გაუქმება Save button - + შენახვა The name can not only contain whitespaces @@ -888,42 +932,42 @@ Shortcut Help - + დახმარება Delete event - + ივენთის წაშლა Copy - + კოპირება Cut - + ამოჭრა Paste - + ჩასმა Delete - + წაშლა Select all - + ყველას მონიშნვა SidebarCalendarWidget Y - + M - + @@ -951,7 +995,7 @@ YearFrame Y - + @@ -959,7 +1003,7 @@ Today Today - დღეს + დღეს diff --git a/translations/dde-calendar-service_kab.ts b/translations/dde-calendar-service_kab.ts index 85589864..9a1f59ca 100644 --- a/translations/dde-calendar-service_kab.ts +++ b/translations/dde-calendar-service_kab.ts @@ -1,680 +1,702 @@ - - - + AccountItem Sync successful - + Network error - + Server exception - + Storage full - + AccountManager Local account - + Event types - + CColorPickerWidget Color - + Cancel button - + Sefsex Save button - + Sekles CDayMonthView Monday - + Arim Tuesday - + Aram Wednesday - + Ahad Thursday - + Amhad Friday - + Sem Saturday - + Sed Sunday - + Acer CDayWindow Y - + Aseggas M - + Ayyur D - + Ass Lunar - + CGraphicsView New Event - + Tadyant tamaynut CMonthScheduleNumItem %1 more - + Ugar n 1% CMonthView New event - + Tadyant tamaynut New Event - + Tadyant tamaynut CMonthWindow Y - + Aseggas CMyScheduleView My Event - + Tadyant-iw OK button - + IH Delete button - + Kkes Edit button - + Ẓreg CPushButton New event type - + CScheduleDlg New Event - + Tadyant tamaynut Edit Event - + Ẓreg tadyant End time must be greater than start time - + Akud n taggara yezmer d netta ara igerrzen ɣef wakud n tazwara OK button - + IH Never - + Werǧin At time of event - + Deg wakud n tedyant 15 minutes before - + 15 tesdatin send 30 minutes before - + 30 tesdatin send 1 hour before - + 1 usrag send 1 day before - + 1 wass send 2 days before - + 2 wussan send 1 week before - + 1 dduṛt send On start day (9:00 AM) - + Deg tazwara n wass (9:00 SRG) time(s) - + Akud (akuden) Enter a name please - + The name can not only contain whitespaces - + Type: - + Anaw: Description: - + Aglam: All Day: - + Yal ass: Starts: - + Yebda Ends: - + Yekfa Remind Me: - + Smekti-yi-d: Repeat: - + Ales End Repeat: - + Taggara n wallus: Calendar account: - + Calendar account - + Type - + Anaw Description - + Aglam All Day - + Meṛṛa ass Time: - + Time - + Solar - + Lunar - + Starts - + Yebda Ends - + Yekfa Remind Me - + Smekti-yi-d Repeat - + Ales Daily - + S wass Weekdays - + Ussan n yimalas Weekly - + S yimalas Monthly - + S wayyur Yearly - + S useggas End Repeat - + Taggara n wallus After - + Seld On - + Ɣef Cancel button - + Sefsex Save button - + Sekles CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Meṛṛa timeḍriwin n tedyant i d-yettuɣalen ilaq ad sɛunt yiwen waddad i wass kamel. Do you want to change all occurrences? - + Tebɣiḍ ad tesnefleḍ meṛṛa timeḍriwin? Cancel button - + Sefsex Change All - + Senfel kullec You are changing the repeating rule of this event. - + Tbeddleḍ alugen i d-yettuɣalen n tedyant-a. You are deleting an event. - + Tekkseḍ yiwet tedyant. Are you sure you want to delete this event? - + D tidet tebɣiḍ ad tekkseḍ tadyant-a? Delete button - + Kkes Do you want to delete all occurrences of this event, or only the selected occurrence? - + Tebɣiḍ ad tekkseḍ meṛṛa timeḍriwin n tedyant-a neɣ tid kan i d-yettwafernen? Delete All - + Kkes kullec Delete Only This Event - + Kkes kan tadyant-a Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Tebɣiḍ ad tekkseḍ timeḍriwt-a d tid meṛṛa i d-iteddun, neɣ d tid kan i d-yettufernen? Delete All Future Events - + Kkes meṛṛa tidyanin i d-iteddun You are changing a repeating event. - + Tbeddleḍ tadyant i d-yettuɣalen. Do you want to change only this occurrence of the event, or all occurrences? - + Tebɣiḍ ad tbeddleḍ timeḍriwt-agi kan n tedyant, neɣ meṛṛa timeḍriwen? All - + Meṛṛa Only This Event - + Tadyant-agi kan Do you want to change only this occurrence of the event, or this and all future occurrences? - + Tebɣiḍ ad tbeddleḍ timeḍriwt-a n tedyant, neɣ tagi d meṛṛa timeḍriwen i d-iteddun? All Future Events - + Tidyanin akk i d-iteddun You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + OK button - + IH CScheduleSearchDateItem Y - + Aseggas M - + Ayyur D - + Ass CScheduleSearchItem Edit - + Ẓreg Delete - + Kkes All Day - + Meṛṛa ass CScheduleSearchView No search results - + Ulac igmaḍ n unadi CScheduleView ALL DAY - + YAL ASS CSettingDialog - Sunday - - - - Monday - - - - 24-hour clock - - - - 12-hour clock - + import ICS file + Manual - + S ufus 15 mins - + 30 mins - + 1 hour - + 24 hours - + Sync Now - + Last sync - + + + + Monday + Arim + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + Sunday + Acer + + + 12-hour clock + + + + 24-hour clock + CTimeEdit (%1 mins) - + (%1 hour) - + (%1 hours) - + CTitleWidget Y - + Aseggas M - + Ayyur W - + Imalas D - + Ass Search events and festivals - + CWeekWidget Sun - + Mon - + Tue - + Wed - + Thu - + Fri - + Sat - + CWeekWindow Week - + Dduṛt Y - + Aseggas CYearScheduleView All Day - + Meṛṛa ass No event - + Ulac tadyant CYearWindow Y - + Aseggas CalendarWindow Calendar - + Awitay Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Awitay d afecku i uskan n wazemz akked daɣen d aɣawas n yal ass i usɣiwes n wayen akk ara tgeḍ deg tudert. Calendarmainwindow Calendar - + Awitay Manage - + Privacy Policy - + Tasertit n tbaḍnit Syncing... - + Amtawi... Sync successful - + Sync failed, please try later - + CenterWidget All Day - + Yal ass @@ -713,15 +735,15 @@ 15 mins later - + 1 hour later - + 4 hours later - + Tomorrow @@ -744,91 +766,99 @@ DragInfoGraphicsView Edit - + Ẓreg Delete - + Kkes New event - + Tadyant tamaynut New Event - + Tadyant tamaynut JobTypeListView + + export + + + + import ICS file + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - + Sefsex Delete button - + Kkes QObject Account settings - + Account - + Select items to be synced - + Events - + General settings - + Sync interval - + Manage calendar - + Calendar account - + Event types - + General - + Amatu First day of week - + Time - + @@ -836,7 +866,7 @@ Today Return - Ass-a + Ass-a @@ -844,86 +874,94 @@ Today Return Today - Ass-a + Ass-a ScheduleTypeEditDlg New event type - + Edit event type - + + + + Import ICS file + Name: - + Isem: Color: - + + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + Cancel button - + Sefsex Save button - + Sekles The name can not only contain whitespaces - + Enter a name please - + Shortcut Help - + Tallalt Delete event - + Kkes tadyant Copy - + Nɣel Cut - + Gzem Paste - + Senteḍ Delete - + Kkes Select all - + Fren kullec SidebarCalendarWidget Y - + Aseggas M - + Ayyur @@ -931,7 +969,7 @@ Go button - + @@ -939,19 +977,19 @@ Sign In button - + Kcem Sign Out button - + Ffeɣ YearFrame Y - + Aseggas @@ -959,7 +997,7 @@ Today Today - Ass-a + Ass-a - + \ No newline at end of file diff --git a/translations/dde-calendar-service_ko.ts b/translations/dde-calendar-service_ko.ts index c833e907..058f5172 100644 --- a/translations/dde-calendar-service_ko.ts +++ b/translations/dde-calendar-service_ko.ts @@ -4,22 +4,18 @@ AccountItem - Sync successful - Network error - Server exception - Storage full @@ -27,12 +23,10 @@ AccountManager - Local account - Event types @@ -40,80 +34,66 @@ CColorPickerWidget - Color - + 색상 - Cancel button - + 취소 - Save button - + 저장 CDayMonthView - Monday - + 월요일 - Tuesday - + 화요일 - Wednesday - + 수요일 - Thursday - + 목요일 - Friday - + 금요일 - Saturday - + 토요일 - Sunday - + 일요일 CDayWindow - Y - + - M - + - D - + - Lunar @@ -121,70 +101,60 @@ CGraphicsView - New Event - + 새 이벤트 CMonthScheduleNumItem - %1 more - + %1 더 CMonthView - New event - + 새 이벤트 - New Event - + 새 이벤트 CMonthWindow - Y - + CMyScheduleView - My Event - + 나의 이벤트 - OK button - + 확인 - Delete button - + 삭제 - Edit button - + 편집 CPushButton - New event type @@ -192,520 +162,417 @@ CScheduleDlg - - - New Event - + 새 이벤트 - Edit Event - + 이벤트 편집 - End time must be greater than start time - + 종료 시간은 시작 시간보다 커야 합니다. - OK button - + 확인 - - - - - - Never - + 없음 - At time of event - + 이벤트 시 - 15 minutes before - + 15분 전 - 30 minutes before - + 30분 전 - 1 hour before - + 1시간 전 - - 1 day before - + 1일 전 - - 2 days before - + 2일 전 - - 1 week before - + 1주일 전 - On start day (9:00 AM) - + 시작일 (오전 9:00) - - - - time(s) - + 시간 - Enter a name please - The name can not only contain whitespaces - - Type: - + 종류: - - Description: - + 설명: - - All Day: - + 하루 종일: - - Starts: - + 시작: - - Ends: - + 종료 - - Remind Me: - + 알림 메시지: - - Repeat: - + 반복: - - End Repeat: - + 종료 반복: - Calendar account: - Calendar account - Type - + 타입 - Description - + 설명 - All Day - + 하루 종일 - Time: - Time - + 시간 - Solar - Lunar - Starts - + 시작 - Ends - + 종료 - Remind Me - + 알림 - Repeat - + 다시 - - Daily - + 매일 - - Weekdays - + 요일 - - Weekly - + 매주 - - - Monthly - + 매달 - - - Yearly - + 매년 - End Repeat - + 반복 종료 - After - + 이후 - On - + 진행 - Cancel button - + 취소 - Save button - + 저장 CScheduleOperation - All occurrences of a repeating event must have the same all-day status. - + 반복 이벤트의 모든 발생은 하루 종일 동일한 상태를 가져야 합니다. - - Do you want to change all occurrences? - + 모든 항목을 변경하시겠습니까? - - - - - - - Cancel button - + 취소 - - Change All - + 모두 변경 - You are changing the repeating rule of this event. - + 이 이벤트의 반복 규칙을 변경하고 있습니다. - - - You are deleting an event. - + 이벤트를 삭제하는 중. - Are you sure you want to delete this event? - + 이 이벤트를 삭제하시겠습니까? - Delete button - + 삭제 - Do you want to delete all occurrences of this event, or only the selected occurrence? - + 이 이벤트의 모든 발생 항목을 삭제하시겠습니까, 아니면 선택한 발생 항목만 삭제하시겠습니까? - Delete All - + 모두 삭제 - - Delete Only This Event - + 이 이벤트만 삭제 - Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + 이 이벤트와 이 이벤트의 모든 향후 발생 항목을 삭제하시겠습니까? 아니면 선택한 발생 항목만 삭제하시겠습니까? - Delete All Future Events - + 모든 향후 이벤트 삭제 - - You are changing a repeating event. - + 반복 이벤트를 변경하는 중입니다. - Do you want to change only this occurrence of the event, or all occurrences? - + 이벤트의 이 발생만 변경하시겠습니까, 아니면 모든 발생을 변경하시겠습니까? - All - + 모두 - - Only This Event - + 이 이벤트만 - Do you want to change only this occurrence of the event, or this and all future occurrences? - + 이벤트의 이 발생만 변경하시겠습니까, 아니면 이 발생과 향후 모든 발생만 변경하시겠습니까? - All Future Events - + 모든 향후 이벤트 - You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - OK button - + 확인 CScheduleSearchDateItem - Y - + - M - + - D - + CScheduleSearchItem - Edit - + 편집 - Delete - + 삭제 - All Day - + 하루 종일 CScheduleSearchView - No search results - + 검색결과가 없습니다. CScheduleView - ALL DAY - + 하루 종일 CSettingDialog - - Sunday + import ICS file - - Monday - + Manual + 수동 - - 24-hour clock + 15 mins - - 12-hour clock + 30 mins - - Manual - + 1 hour + 1 시간 - - 15 mins + 24 hours - - 30 mins + Sync Now - - 1 hour + Last sync - - 24 hours + Monday + 월요일 + + + Tuesday + 화요일 + + + Wednesday + 수요일 + + + Thursday + 목요일 + + + Friday + 금요일 + + + Saturday + 토요일 + + + Sunday + 일요일 + + + 12-hour clock - - Sync Now + 24-hour clock - - Last sync + Please go to the <a href='/'>Control Center</a> to change settings CTimeEdit - (%1 mins) - (%1 hour) - (%1 hours) @@ -713,28 +580,22 @@ CTitleWidget - Y - + - M - + - W - + - D - + - - Search events and festivals @@ -742,118 +603,97 @@ CWeekWidget - Sun - + 일요일 - Mon - + 월요일 - Tue - + - Wed - + 수요일 - Thu - + - Fri - + 금요일 - Sat - + 토요일 CWeekWindow - Week - + 일주일 - Y - + CYearScheduleView - - All Day - + 하루 종일 - No event - + 이벤트 없음 CYearWindow - Y - + CalendarWindow - Calendar - + 달력 - Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + 캘린더는 날짜를 볼 수있는 도구이며, 일상의 모든 것을 예약 할 수있는 현명한 일일 플래너입니다 Calendarmainwindow - Calendar - + 달력 - Manage - Privacy Policy - + 개인정보 보호정책 - Syncing... - + 동기화중... - Sync successful - Sync failed, please try later @@ -861,270 +701,229 @@ CenterWidget - All Day - + 하루 종일 DAccountDataBase - Work - + 작업 - Life - + 생활 - Other - + 기타 DAlarmManager - - - - Close button - 닫기 + 닫기 - One day before start - 시작 하루 전 + 시작 하루 전 - Remind me tomorrow - 내일 알림 + 내일 알림 - Remind me later - 나중에 알림 + 나중에 알림 - 15 mins later - 1 hour later - 4 hours later - - - Tomorrow - 내일 + 내일 - Schedule Reminder - 일정 알림 + 일정 알림 - - %1 to %2 - - Today - 오늘 + 오늘 DragInfoGraphicsView - Edit - + 편집 - Delete - + 삭제 - New event - + 새 이벤트 - New Event - + 새 이벤트 JobTypeListView - + export + + + + import ICS file + + + You are deleting an event type. - All events under this type will be deleted and cannot be recovered. - Cancel button - + 취소 - Delete button - + 삭제 QObject - Account settings - Account - + 계정 - Select items to be synced - Events - - General settings - Sync interval - - Manage calendar - Calendar account - - Event types - General - + 일반 - First day of week - Time - + 시간 Return - Today Return - 오늘 + 오늘 Return Today - - - Today Return Today - 오늘 + 오늘 ScheduleTypeEditDlg - New event type - Edit event type - - Name: + Import ICS file - + Name: + 이름: + + Color: - + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + Cancel button - + 취소 - Save button - + 저장 - The name can not only contain whitespaces - Enter a name please @@ -1132,100 +931,79 @@ Shortcut - Help - + 도움말 - Delete event - + 이벤트 삭제 - Copy - + 복사 - Cut - + 잘라내기 - Paste - + 붙여넣기 - Delete - + 삭제 - Select all - + 전체 선택 SidebarCalendarWidget - Y - + - M - + TimeJumpDialog - Go button - + Go UserloginWidget - Sign In button - + 로그인 - Sign Out button - + 로그아웃 YearFrame - Y - + today - - - - - - - - Today Today - 오늘 + 오늘 diff --git a/translations/dde-calendar-service_lt.ts b/translations/dde-calendar-service_lt.ts index e48363b3..d3530c93 100644 --- a/translations/dde-calendar-service_lt.ts +++ b/translations/dde-calendar-service_lt.ts @@ -9,7 +9,7 @@ Network error - + Tinklo klaida Server exception @@ -35,63 +35,63 @@ CColorPickerWidget Color - + Spalva Cancel button - + Atsisakyti Save button - + Įrašyti CDayMonthView Monday - + Pirmadienis Tuesday - + Antradienis Wednesday - + Trečiadienis Thursday - + Ketvirtadienis Friday - + Penktadienis Saturday - + Šeštadienis Sunday - + Sekmadienis CDayWindow Y - + M M - + m D - + d Lunar @@ -102,7 +102,7 @@ CGraphicsView New Event - + Naujas įvykis @@ -116,18 +116,18 @@ CMonthView New event - + Naujas įvykis New Event - + Naujas įvykis CMonthWindow Y - + M @@ -139,17 +139,17 @@ OK button - + Gerai Delete button - + Ištrinti Edit button - + Redaguoti @@ -163,7 +163,7 @@ CScheduleDlg New Event - + Naujas įvykis Edit Event @@ -176,11 +176,11 @@ OK button - + Gerai Never - + Niekada At time of event @@ -228,11 +228,11 @@ Type: - + Tipas: Description: - + Aprašas: All Day: @@ -260,19 +260,19 @@ Calendar account: - + Kalendoriaus paskyra: Calendar account - + Kalendoriaus paskyra Type - + Tipas Description - + Aprašas All Day @@ -284,7 +284,7 @@ Time - + Laikas Solar @@ -308,7 +308,7 @@ Repeat - + Pakartokite Daily @@ -340,17 +340,17 @@ On - + Įjungta Cancel button - + Atsisakyti Save button - + Įrašyti @@ -366,7 +366,7 @@ Cancel button - + Atsisakyti Change All @@ -382,12 +382,12 @@ Are you sure you want to delete this event? - + Ar tikrai norite ištrinti šį įvykį? Delete button - + Ištrinti Do you want to delete all occurrences of this event, or only the selected occurrence? @@ -440,33 +440,33 @@ OK button - + Gerai CScheduleSearchDateItem Y - + M M - + m D - + d CScheduleSearchItem Edit - + Redaguoti Delete - + Ištrinti All Day @@ -477,7 +477,7 @@ CScheduleSearchView No search results - + Paieškos rezultatų nėra @@ -490,47 +490,75 @@ CSettingDialog - Sunday + import ICS file - Monday - + Manual + Rankinis - 24-hour clock - + 15 mins + 15 minučių - 12-hour clock - + 30 mins + 30 minučių - Manual - + 1 hour + 1 valanda - 15 mins - + 24 hours + 24 valandos - 30 mins + Sync Now - 1 hour + Last sync - 24 hours + Monday + Pirmadienis + + + Tuesday + Antradienis + + + Wednesday + Trečiadienis + + + Thursday + Ketvirtadienis + + + Friday + Penktadienis + + + Saturday + Šeštadienis + + + Sunday + Sekmadienis + + + 12-hour clock - Sync Now + 24-hour clock - Last sync + Please go to the <a href='/'>Control Center</a> to change settings @@ -553,11 +581,11 @@ CTitleWidget Y - + M M - + m W @@ -565,7 +593,7 @@ D - + d Search events and festivals @@ -576,42 +604,42 @@ CWeekWidget Sun - + Sek Mon - + Pir Tue - + Ant Wed - + Tre Thu - + Ket Fri - + Pen Sat - + Šeš CWeekWindow Week - + Savaitė Y - + M @@ -629,14 +657,14 @@ CYearWindow Y - + M CalendarWindow Calendar - + Kalendorius Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. @@ -647,7 +675,7 @@ Calendarmainwindow Calendar - + Kalendorius Manage @@ -659,7 +687,7 @@ Syncing... - + Sinchronizuojama... Sync successful @@ -744,23 +772,31 @@ DragInfoGraphicsView Edit - + Redaguoti Delete - + Ištrinti New event - + Naujas įvykis New Event - + Naujas įvykis JobTypeListView + + export + + + + import ICS file + + You are deleting an event type. @@ -772,23 +808,23 @@ Cancel button - + Atsisakyti Delete button - + Ištrinti QObject Account settings - + Paskyros nustatymai Account - + Paskyra Select items to be synced @@ -808,11 +844,11 @@ Manage calendar - + Tvarkyti kalendorių Calendar account - + Kalendoriaus paskyra Event types @@ -820,7 +856,7 @@ General - + Bendra First day of week @@ -828,7 +864,7 @@ Time - + Laikas @@ -836,7 +872,7 @@ Today Return - Šiandien + Šiandien @@ -844,7 +880,7 @@ Today Return Today - Šiandien + Šiandien @@ -858,22 +894,30 @@ - Name: + Import ICS file + + Name: + Pavadinimas: + Color: + Spalva: + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: Cancel button - + Atsisakyti Save button - + Įrašyti The name can not only contain whitespaces @@ -888,42 +932,42 @@ Shortcut Help - + Žinynas Delete event - + Ištrinti įvykį Copy - + Kopijuoti Cut - + Iškirpti Paste - + Įdėti Delete - + Ištrinti Select all - + Žymėti viską SidebarCalendarWidget Y - + M M - + m @@ -939,19 +983,19 @@ Sign In button - + Prisijungti Sign Out button - + Atsijungti YearFrame Y - + M @@ -959,7 +1003,7 @@ Today Today - Šiandien + Šiandien diff --git a/translations/dde-calendar-service_ms.ts b/translations/dde-calendar-service_ms.ts index 109ebedd..97e79cf9 100644 --- a/translations/dde-calendar-service_ms.ts +++ b/translations/dde-calendar-service_ms.ts @@ -35,63 +35,63 @@ CColorPickerWidget Color - + Warna Cancel button - + Batal Save button - + Simpan CDayMonthView Monday - + Isnin Tuesday - + Selasa Wednesday - + Rabu Thursday - + Khamis Friday - + Jumaat Saturday - + Sabtu Sunday - + Ahad CDayWindow Y - + T M - + B D - + H Lunar @@ -102,54 +102,54 @@ CGraphicsView New Event - + Peristiwa Baharu CMonthScheduleNumItem %1 more - + %1 lagi CMonthView New event - + Peristiwa baharu New Event - + Peristiwa Baharu CMonthWindow Y - + T CMyScheduleView My Event - + Peristiwa Saya OK button - + OK Delete button - + Padam Edit button - + Sunting @@ -163,60 +163,60 @@ CScheduleDlg New Event - + Peristiwa Baharu Edit Event - + Sunting Peristiwa End time must be greater than start time - + Masa tamat mesti lebih besar dari masa mula OK button - + OK Never - + Tidak sesekali At time of event - + Semua tempoh peristiwa 15 minutes before - + 15 minit sebelum 30 minutes before - + 30 minit sebelum 1 hour before - + 1 jam sebelum 1 day before - + 1 hari sebelum 2 days before - + 2 hari sebelum 1 week before - + 1 minggu sebelum On start day (9:00 AM) - + Pada hari mula (9:00 AM) time(s) - + kali Enter a name please @@ -228,35 +228,35 @@ Type: - + Jenis: Description: - + Keterangan: All Day: - + Sepanjang Hari: Starts: - + Mula: Ends: - + Tamat: Remind Me: - + Ingatkan Saya: Repeat: - + Ulang: End Repeat: - + Tamat Ulang: Calendar account: @@ -268,15 +268,15 @@ Type - + Jenis Description - + Keterangan All Day - + Sepanjang Hari Time: @@ -284,7 +284,7 @@ Time - + Masa Solar @@ -296,142 +296,142 @@ Starts - + Mula Ends - + Tamat Remind Me - + Ingatkan Saya Repeat - + Ulang Daily - + Harian Weekdays - + Hari Bekerja Weekly - + Mingguan Monthly - + Bulanan Yearly - + Tahunan End Repeat - + Tamat Ulang After - + Selepas On - + Pada Cancel button - + Batal Save button - + Simpan CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Semua kemunculan bagi peristiwa berulang mesti mempunyai status sepanjang-hari yang sama. Do you want to change all occurrences? - + Anda pasti mahu mengubah semua kemunculan? Cancel button - + Batal Change All - + Ubah Semua You are changing the repeating rule of this event. - + Anda mengubah peraturan berulang bagi peristiwa ini. You are deleting an event. - + Anda telah memadam satu peristiwa. Are you sure you want to delete this event? - + Anda pasti mahu memadam peristiwa ini? Delete button - + Padam Do you want to delete all occurrences of this event, or only the selected occurrence? - + Anda pasti mahu memadam semua kemunculan peristiwa ini, atau hanya kemunculan terpilih? Delete All - + Padam Semua Delete Only This Event - + Hanya Padam Peristiwa Ini Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Anda pasti mahu memadam semua kemunculan peristiwa ini dan akan datang, atau hanya kemunculan terpilih? Delete All Future Events - + Padam Semua Peristiwa Akan Datang You are changing a repeating event. - + Anda mengubah satu peristiwa berulang. Do you want to change only this occurrence of the event, or all occurrences? - + Anda pasti mahu mengubah hanya kemunculan peristiwa ini, atau semua kemunculan? All - + Semua Only This Event - + Hanya Peristiwa Ini Do you want to change only this occurrence of the event, or this and all future occurrences? - + Anda pasti mahu mengubah hanya kemunculan peristiwa ini, atau ini dan semua kemunculan masa hadapan? All Future Events - + Semua Peristiwa Masa Hadapan You have selected a leap month, and will be reminded according to the rules of the lunar calendar. @@ -440,97 +440,125 @@ OK button - + OK CScheduleSearchDateItem Y - + T M - + B D - + H CScheduleSearchItem Edit - + Sunting Delete - + Padam All Day - + Sepanjang Hari CScheduleSearchView No search results - + Tiada keputusan gelintar CScheduleView ALL DAY - + SEPANJANG HARI CSettingDialog - Sunday + import ICS file - Monday - + Manual + Manual - 24-hour clock + 15 mins - 12-hour clock + 30 mins - Manual - + 1 hour + 1 jam - 15 mins + 24 hours - 30 mins + Sync Now - 1 hour + Last sync - 24 hours + Monday + Isnin + + + Tuesday + Selasa + + + Wednesday + Rabu + + + Thursday + Khamis + + + Friday + Jumaat + + + Saturday + Sabtu + + + Sunday + Ahad + + + 12-hour clock - Sync Now + 24-hour clock - Last sync + Please go to the <a href='/'>Control Center</a> to change settings @@ -553,19 +581,19 @@ CTitleWidget Y - + T M - + B W - + M D - + H Search events and festivals @@ -576,78 +604,78 @@ CWeekWidget Sun - + Ahd Mon - + Isn Tue - + Sel Wed - + Rab Thu - + Kha Fri - + Jum Sat - + Sab CWeekWindow Week - + Minggu Y - + T CYearScheduleView All Day - + Sepanjang Hari No event - + Tiada peristiwa CYearWindow Y - + T CalendarWindow Calendar - + Kalendar Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Kalendar ialah sebuah alat untuk melihat tarikh, dan juga satu perancang harian pintar yang dapat menjadualkan semua perkara dalam hidup ini. Calendarmainwindow Calendar - + Kalendar Manage @@ -655,11 +683,11 @@ Privacy Policy - + Dasar Persendirian Syncing... - + Menyegerak... Sync successful @@ -674,7 +702,7 @@ CenterWidget All Day - + Sepanjang Hari @@ -744,23 +772,31 @@ DragInfoGraphicsView Edit - + Sunting Delete - + Padam New event - + Peristiwa baharu New Event - + Peristiwa Baharu JobTypeListView + + export + + + + import ICS file + + You are deleting an event type. @@ -772,12 +808,12 @@ Cancel button - + Batal Delete button - + Padam @@ -788,7 +824,7 @@ Account - + Akaun Select items to be synced @@ -820,7 +856,7 @@ General - + Am First day of week @@ -828,7 +864,7 @@ Time - + Masa @@ -836,7 +872,7 @@ Today Return - Hari ini + Hari ini @@ -844,7 +880,7 @@ Today Return Today - Hari ini + Hari ini @@ -858,22 +894,30 @@ - Name: + Import ICS file + + Name: + Nama: + Color: + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + Cancel button - + Batal Save button - + Simpan The name can not only contain whitespaces @@ -888,42 +932,42 @@ Shortcut Help - + Bantuan Delete event - + Padam peristiwa Copy - + Salin Cut - + Potong Paste - + Tampal Delete - + Padam Select all - + Pilih semua SidebarCalendarWidget Y - + T M - + B @@ -939,19 +983,19 @@ Sign In button - + Daftar Masuk Sign Out button - + Daftar Keluar YearFrame Y - + T @@ -959,7 +1003,7 @@ Today Today - Hari ini + Hari ini diff --git a/translations/dde-calendar-service_nl.ts b/translations/dde-calendar-service_nl.ts index 5d46eb56..c5a3f125 100644 --- a/translations/dde-calendar-service_nl.ts +++ b/translations/dde-calendar-service_nl.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Sychroniseren voltooid Network error - + Netwerkfout Server exception - + Serveruitzondering Storage full - + Geen vrije schijfruimte AccountManager Local account - + Lokaal account Event types - + Afspraaktypes CColorPickerWidget Color - + Kleur Cancel button - + Annuleren Save button - + Opslaan CDayMonthView Monday - + Maandag Tuesday - + Dinsdag Wednesday - + Woensdag Thursday - + Donderdag Friday - + Vrijdag Saturday - + Zaterdag Sunday - + Zondag CDayWindow Y - + J M - + M D - + D Lunar - + Maan CGraphicsView New Event - + Nieuwe afspraak CMonthScheduleNumItem %1 more - + Nog %1 andere CMonthView New event - + Nieuwe afspraak New Event - + Nieuwe afspraak CMonthWindow Y - + J CMyScheduleView My Event - + Mijn afspraak OK button - + Oké Delete button - + Verwijderen Edit button - + Bewerken CPushButton New event type - + Nieuw afspraaktype CScheduleDlg New Event - + Nieuwe afspraak Edit Event - + Afspraak bewerken End time must be greater than start time - + De eindtijd moet later zijn dan de begintijd OK button - + Oké Never - + Nooit At time of event - + Bij aanvang 15 minutes before - + 15 minuten van tevoren 30 minutes before - + 30 minuten van tevoren 1 hour before - + 1 uur van tevoren 1 day before - + 1 dag van tevoren 2 days before - + 2 dagen van tevoren 1 week before - + 1 week van tevoren On start day (9:00 AM) - + Op de dag van de afspraak (9:00 AM) time(s) - + keer Enter a name please - + Voer een naam in The name can not only contain whitespaces - + De naam mag niet alleen bestaan uit spaties Type: - + Soort: Description: - + Omschrijving: All Day: - + Hele dag: Starts: - + Begint om: Ends: - + Eindigt om: Remind Me: - + Herinneren: Repeat: - + Herhalen: End Repeat: - + Herhaling eindigt op: Calendar account: - + Agenda-account: Calendar account - + Agenda-account Type - + Soort Description - + Omschrijving All Day - + Hele dag Time: - + Tijdstip: Time - + Tijdstip Solar - + Zon Lunar - + Maan Starts - + Begint om Ends - + Eindigt om Remind Me - + Herinneren Repeat - + Herhalen Daily - + Dagelijks Weekdays - + Weekdagen Weekly - + Wekelijks Monthly - + Maandelijks Yearly - + Jaarlijks End Repeat - + Herhaling eindigt op After - + Na On - + Op Cancel button - + Annuleren Save button - + Opslaan CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Alle afspraken in reeks moeten voorzien zijn van de status 'hele dag'. Do you want to change all occurrences? - + Wil je alle afspraken in de reeks bewerken? Cancel button - + Annuleren Change All - + Reeks bewerken You are changing the repeating rule of this event. - + Je past de herhaalinstellingen van deze afspraak aan. You are deleting an event. - + Je verwijdert een afspraak. Are you sure you want to delete this event? - + Weet je zeker dat je deze afspraak wilt verwijderen? Delete button - + Verwijderen Do you want to delete all occurrences of this event, or only the selected occurrence? - + Wil je alle afspraken in de reeks verwijderen of enkel deze? Delete All - + Reeks verwijderen Delete Only This Event - + Deze afspraak verwijderen Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Wil je deze en toekomstige afspraken verwijderen of enkel de deze? Delete All Future Events - + Toekomstige afspraken verwijderen You are changing a repeating event. - + Je past een reeks afspraken aan. Do you want to change only this occurrence of the event, or all occurrences? - + Wil je deze en toekomstige afspraken aanpassen of enkel deze? All - + Reeks Only This Event - + Deze afspraak Do you want to change only this occurrence of the event, or this and all future occurrences? - + Wil je deze en toekomstige afspraken aanpassen of enkel deze? All Future Events - + Toekomstige afspraken You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Je hebt een schrikkelmaand gekozen. De herinnering wordt op basis van de maankalender getoond. OK button - + Oké CScheduleSearchDateItem Y - + J M - + M D - + D CScheduleSearchItem Edit - + Bewerken Delete - + Verwijderen All Day - + Hele dag CScheduleSearchView No search results - + Geen zoekresultaten CScheduleView ALL DAY - + HELE DAG CSettingDialog - Sunday - + Manual + Handmatig - Monday - + 15 mins + 15 min. - 24-hour clock - + 30 mins + 30 min. - 12-hour clock - + 1 hour + 1 uur - Manual - + 24 hours + 24 uur - 15 mins - + Sync Now + Nu synchroniseren - 30 mins - + Last sync + Recentste synchronisatie - 1 hour - + Monday + maandag - 24 hours - + Sunday + zondag - Sync Now - + 12-hour clock + 12-uursklok - Last sync - + 24-hour clock + 24-uursklok + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 min.) (%1 hour) - + (%1 uur) (%1 hours) - + (%1 uur) CTitleWidget Y - + J M - + M W - + W D - + D Search events and festivals - + Zoeken naar afspraken en festivals CWeekWidget Sun - + zo Mon - + ma Tue - + di Wed - + woe Thu - + do Fri - + vrij Sat - + za CWeekWindow Week - + Week Y - + J CYearScheduleView All Day - + Hele dag No event - + Geen afspraak CYearWindow Y - + J CalendarWindow Calendar - + Kalender Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Met Kalender kun je je afspraken en planning beheren, zowel werk als privé. Calendarmainwindow Calendar - + Kalender Manage - + Beheren Privacy Policy - + Privacybeleid Syncing... - + Bezig met synchroniseren… Sync successful - + Sychroniseren voltooid Sync failed, please try later - + Synchroniseren mislukt - probeer het later opnieuw CenterWidget All Day - + Hele dag @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Aanpassen Delete - + Verwijderen New event - + Nieuwe afspraak New Event - + Nieuwe afspraak JobTypeListView You are deleting an event type. - + Je staat op het punt om een afspraaktype te verwijderen. All events under this type will be deleted and cannot be recovered. - + Alle bijbehorende afspraken worden verwijderd en kunnen niet worden hersteld. Cancel button - + Annuleren Delete button - + Verwijderen QObject Account settings - + Accountinstellingen Account - + Account Select items to be synced - + Selecteer de te synchroniseren items Events - + Afspraken General settings - + Algemene instellingen Sync interval - + Synchroniseren, elke Manage calendar - + Agenda beheren Calendar account - + Agenda-account Event types - + Afspraaktypes General - + Algemeen First day of week - + Eerste dag van de week Time - + Tijdstip @@ -836,7 +854,7 @@ Today Return - Vandaag + Vandaag @@ -844,86 +862,86 @@ Today Return Today - Vandaag + Vandaag ScheduleTypeEditDlg New event type - + Nieuw afspraaktype Edit event type - + Afspraaktype bewerken Name: - + Naam: Color: - + Kleur: Cancel button - + Annuleren Save button - + Opslaan The name can not only contain whitespaces - + De naam mag niet alleen bestaan uit spaties Enter a name please - + Voer een naam in Shortcut Help - + Hulp Delete event - + Afspraak verwijderen Copy - + Kopiëren Cut - + Knippen Paste - + Plakken Delete - + Verwijderen Select all - + Alles selecteren SidebarCalendarWidget Y - + J M - + M @@ -931,7 +949,7 @@ Go button - + Ga @@ -939,19 +957,19 @@ Sign In button - + Inloggen Sign Out button - + Uitloggen YearFrame Y - + J @@ -959,7 +977,7 @@ Today Today - Vandaag + Vandaag - + \ No newline at end of file diff --git a/translations/dde-calendar-service_pl.ts b/translations/dde-calendar-service_pl.ts index 10a9a3a7..f5baf33f 100644 --- a/translations/dde-calendar-service_pl.ts +++ b/translations/dde-calendar-service_pl.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Synchronizacja zakończona Network error - + Błąd sieci Server exception - + Wyjątek serwera Storage full - + Pamięć zapełniona AccountManager Local account - + Konto lokalne Event types - + Typy wydarzeń CColorPickerWidget Color - + Kolor Cancel button - + Anuluj Save button - + Zapisz CDayMonthView Monday - + Poniedziałek Tuesday - + Wtorek Wednesday - + Środa Thursday - + Czwartek Friday - + Piątek Saturday - + Sobota Sunday - + Niedziela CDayWindow Y - + R M - + M D - + D Lunar - + Księżycowy CGraphicsView New Event - + Nowe wydarzenie CMonthScheduleNumItem %1 more - + jeszcze 1% CMonthView New event - + Nowe wydarzenie New Event - + Nowe wydarzenie CMonthWindow Y - + R CMyScheduleView My Event - + Moje wydarzenie OK button - + OK Delete button - + Usuń Edit button - + Edytuj CPushButton New event type - + Nowy typ wydarzenia CScheduleDlg New Event - + Nowe wydarzenie Edit Event - + Edytuj wydarzenie End time must be greater than start time - + Czas zakończenia musi być późniejszy niż czas rozpoczęcia OK button - + OK Never - + Nigdy At time of event - + W czasie wydarzenia 15 minutes before - + 15 minut przed 30 minutes before - + 30 minut przed 1 hour before - + 1 godzinę przed 1 day before - + 1 dzień przed 2 days before - + 2 dni przed 1 week before - + 1 tydzień przed On start day (9:00 AM) - + W dniu rozpoczęcia (9:00) time(s) - + raz(y) Enter a name please - + Wprowadź nazwę The name can not only contain whitespaces - + Nazwa nie może zawierać tylko białych znaków Type: - + Typ: Description: - + Opis: All Day: - + Cały dzień: Starts: - + Początek: Ends: - + Koniec: Remind Me: - + Przypomnij mi: Repeat: - + Powtórz: End Repeat: - + Zakończ powtarzanie: Calendar account: - + Konto kalendarza: Calendar account - + Konto kalendarza Type - + Typ Description - + Opis All Day - + Cały dzień Time: - + Czas: Time - + Czas Solar - + Słoneczny Lunar - + Księżycowy Starts - + Początek Ends - + Koniec Remind Me - + Przypomnij mi Repeat - + Powtórz Daily - + Codziennie Weekdays - + W dni robocze Weekly - + Co tydzień Monthly - + Co miesiąc Yearly - + Co rok End Repeat - + Zakończ Powtarzanie After - + Po On - + Cancel button - + Anuluj Save button - + Zapisz CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Wszystkie wystąpienia powtarzającego się wydarzenia muszą zawierać ten sam stan całodniowy. Do you want to change all occurrences? - + Czy chcesz zmienić wszystkie wystąpienia? Cancel button - + Anuluj Change All - + Zmień wszystkie You are changing the repeating rule of this event. - + Zmieniasz regułę powtarzania tego wydarzenia. You are deleting an event. - + Usuwasz wydarzenie. Are you sure you want to delete this event? - + Czy na pewno chcesz usunąć to wydarzenie? Delete button - + Usuń Do you want to delete all occurrences of this event, or only the selected occurrence? - + Czy chcesz usunąć wszystkie wystąpienia tego zdarzenia, czy tylko wybrane wystąpienie? Delete All - + Usuń wszystkie Delete Only This Event - + Usuń tylko to wydarzenie Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Czy chcesz usunąć to i wszystkie przyszłe wystąpienia tego wydarzenia, czy tylko wybrane wystąpienie? Delete All Future Events - + Usuń wszystkie przyszłe wydarzenia You are changing a repeating event. - + Zmieniasz powtarzające się wydarzenie. Do you want to change only this occurrence of the event, or all occurrences? - + Czy chcesz zmienić tylko to wystąpienie wydarzenia, czy wszystkie wydarzenia? All - + Wszystko Only This Event - + Tylko to wydarzenie Do you want to change only this occurrence of the event, or this and all future occurrences? - + Czy chcesz zmienić tylko to wystąpienie wydarzenia, czy to i wszystkie przyszłe wydarzenia? All Future Events - + Wszystkie przyszłe wydarzenia You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Zaznaczono miesiąc przestępny, przypomnienie będzie działać zgodnie z zasadami kalendarza księżycowego. OK button - + OK CScheduleSearchDateItem Y - + R M - + M D - + D CScheduleSearchItem Edit - + Edytuj Delete - + Usuń All Day - + Cały dzień CScheduleSearchView No search results - + Brak wyników wyszukiwania CScheduleView ALL DAY - + CAŁY DZIEŃ CSettingDialog - Sunday - + Manual + Ręcznie - Monday - + 15 mins + 15 min - 24-hour clock - + 30 mins + 30 min - 12-hour clock - + 1 hour + 1 godz - Manual - + 24 hours + 24 godz - 15 mins - + Sync Now + Synchronizuj teraz - 30 mins - + Last sync + Ostatnia synchronizacja - 1 hour - + Monday + Poniedziałek - 24 hours - + Sunday + Niedziela - Sync Now - + 12-hour clock + Zegar 12-godzinny - Last sync - + 24-hour clock + Zegar 24-godzinny + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 minut) (%1 hour) - + (%1 godzina) (%1 hours) - + (%1 godzin) CTitleWidget Y - + R M - + M W - + T D - + D Search events and festivals - + Szukaj wydarzeń i festiwalów CWeekWidget Sun - + Nie Mon - + Pon Tue - + Wt Wed - + Śr Thu - + Czw Fri - + Pt Sat - + Sob CWeekWindow Week - + Tydzień Y - + R CYearScheduleView All Day - + Cały dzień No event - + Brak wydarzeń CYearWindow Y - + R CalendarWindow Calendar - + Kalendarz Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Kalendarz to narzędzie umożliwiające przeglądanie dat, jak i inteligentny terminarz, w którym możesz zaplanować wszystkie wydarzenia w życiu. Calendarmainwindow Calendar - + Kalendarz Manage - + Zarządzaj Privacy Policy - + Polityka prywatności Syncing... - + Synchronizuję... Sync successful - + Synchronizacja zakończona Sync failed, please try later - + Błąd synchronizacji, spróbuj ponownie później CenterWidget All Day - + Cały dzień @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Edytuj Delete - + Usuń New event - + Nowe wydarzenie New Event - + Nowe wydarzenie JobTypeListView You are deleting an event type. - + Usuwasz typ wydarzenia. All events under this type will be deleted and cannot be recovered. - + Wszystkie wydarzenia skatalogowane pod tym typem zostaną usunięte i nie będzie można ich przywrócić. Cancel button - + Anuluj Delete button - + Usuń QObject Account settings - + Ustawienia konta Account - + Konto Select items to be synced - + Wybierz przedmioty do synchronizacji Events - + Wydarzenia General settings - + Ustawienia ogólne Sync interval - + Interwał synchronizacji Manage calendar - + Zarządzaj kalendarzem Calendar account - + Konto kalendarza Event types - + Typy wydarzeń General - + Ogólne First day of week - + Pierwszy dzień tygodnia Time - + Czas @@ -836,7 +854,7 @@ Today Return - Dzisiaj + Dzisiaj @@ -844,86 +862,86 @@ Today Return Today - Dzisiaj + Dzisiaj ScheduleTypeEditDlg New event type - + Nowy typ wydarzenia Edit event type - + Edytuj typ wydarzenia Name: - + Nazwa: Color: - + Kolor: Cancel button - + Anuluj Save button - + Zapisz The name can not only contain whitespaces - + Nazwa nie może zawierać tylko znaków spacji Enter a name please - + Wprowadź nazwę Shortcut Help - + Pomoc Delete event - + Usuń wydarzenie Copy - + Kopiuj Cut - + Wytnij Paste - + Wklej Delete - + Usuń Select all - + Zaznacz wszystko SidebarCalendarWidget Y - + R M - + M @@ -931,7 +949,7 @@ Go button - + Przejdź @@ -939,19 +957,19 @@ Sign In button - + Zaloguj się Sign Out button - + Wyloguj się YearFrame Y - + R @@ -959,7 +977,7 @@ Today Today - Dzisiaj + Dzisiaj - + \ No newline at end of file diff --git a/translations/dde-calendar-service_pt.ts b/translations/dde-calendar-service_pt.ts index 1e0d8121..cc87a808 100644 --- a/translations/dde-calendar-service_pt.ts +++ b/translations/dde-calendar-service_pt.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Sincronização bem sucedida Network error - + Erro de rede Server exception - + Exceção do servidor Storage full - + Armazenamento cheio AccountManager Local account - + Conta local Event types - + Tipos de evento CColorPickerWidget Color - + Cor Cancel button - + Cancelar Save button - + Guardar CDayMonthView Monday - + Seg Tuesday - + Ter Wednesday - + Qua Thursday - + Qui Friday - + Sex Saturday - + Sáb Sunday - + Dom CDayWindow Y - + A M - + M D - + D Lunar - + Lunar CGraphicsView New Event - + Novo evento CMonthScheduleNumItem %1 more - + mais %1 CMonthView New event - + Novo evento New Event - + Novo evento CMonthWindow Y - + A CMyScheduleView My Event - + O meu evento OK button - + Aceitar Delete button - + Eliminar Edit button - + Editar CPushButton New event type - + Novo tipo de evento CScheduleDlg New Event - + Novo evento Edit Event - + Editar evento End time must be greater than start time - + A hora de fim deve ser maior do que a hora de início OK button - + Aceitar Never - + Nunca At time of event - + Na hora do evento 15 minutes before - + 15 minutos antes 30 minutes before - + 30 minutos antes 1 hour before - + 1 hora antes 1 day before - + 1 dia antes 2 days before - + 2 dias antes 1 week before - + 1 semana antes On start day (9:00 AM) - + No início do dia (9:00 AM) time(s) - + vez(es) Enter a name please - + Introduza um nome The name can not only contain whitespaces - + O nome não pode conter apenas espaços em branco Type: - + Tipo: Description: - + Descrição: All Day: - + Dia todo: Starts: - + Inicia: Ends: - + Termina: Remind Me: - + Lembrar-me: Repeat: - + Repetir: End Repeat: - + Fim de repetição: Calendar account: - + Conta de calendário: Calendar account - + Conta de calendário Type - + Tipo Description - + Descrição All Day - + Dia todo Time: - + Hora: Time - + Hora Solar - + Solar Lunar - + Lunar Starts - + Inicia Ends - + Termina Remind Me - + Lembrar-me Repeat - + Repetir Daily - + Diário Weekdays - + Dias da semana Weekly - + Semanal Monthly - + Mensal Yearly - + Anual End Repeat - + Fim da repetição After - + Depois On - + Em Cancel button - + Cancelar Save button - + Guardar CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Todas as ocorrências de um evento repetido devem ter o mesmo estado durante todo o dia. Do you want to change all occurrences? - + Deseja alterar todas as ocorrências? Cancel button - + Cancelar Change All - + Alterar tudo You are changing the repeating rule of this event. - + Está a alterar a regra da repetição deste evento. You are deleting an event. - + Está a eliminar um evento. Are you sure you want to delete this event? - + Tem a certeza que deseja eliminar este evento? Delete button - + Eliminar Do you want to delete all occurrences of this event, or only the selected occurrence? - + Deseja eliminar todas as ocorrências deste evento ou apenas a ocorrência selecionada? Delete All - + Eliminar tudo Delete Only This Event - + Eliminar apenas este evento Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Deseja eliminar esta e todas as ocorrências futuras deste evento ou apenas a ocorrência selecionada? Delete All Future Events - + Eliminar todos os eventos futuros You are changing a repeating event. - + Está a alterar um evento repetido. Do you want to change only this occurrence of the event, or all occurrences? - + Deseja alterar apenas esta ocorrência do evento, ou todas as ocorrências? All - + Tudo Only This Event - + Apenas este evento Do you want to change only this occurrence of the event, or this and all future occurrences? - + Deseja alterar apenas esta ocorrência do evento ou esta e todas as ocorrências futuras? All Future Events - + Todos os eventos futuros You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Selecionou um mês bissexto, e será lembrado de acordo com as regras do calendário lunar. OK button - + Aceitar CScheduleSearchDateItem Y - + A M - + M D - + D CScheduleSearchItem Edit - + Editar Delete - + Eliminar All Day - + Dia todo CScheduleSearchView No search results - + Sem resultados de pesquisa CScheduleView ALL DAY - + DIA TODO CSettingDialog - Sunday - + Manual + Manual - Monday - + 15 mins + 15 mins - 24-hour clock - + 30 mins + 30 mins - 12-hour clock - + 1 hour + 1 hora - Manual - + 24 hours + 24 horas - 15 mins - + Sync Now + Sincronizar agora - 30 mins - + Last sync + Última sincronização - 1 hour - + Monday + Segunda - 24 hours - + Sunday + Domingo - Sync Now - + 12-hour clock + Relógio de 12 horas - Last sync - + 24-hour clock + Relógio de 24 horas + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 mins) (%1 hour) - + (%1 hora) (%1 hours) - + (%1 horas) CTitleWidget Y - + A M - + M W - + S D - + D Search events and festivals - + Pesquisar eventos e festivais CWeekWidget Sun - + Dom Mon - + Seg Tue - + Ter Wed - + Qua Thu - + Qui Fri - + Sex Sat - + Sáb CWeekWindow Week - + Semana Y - + A CYearScheduleView All Day - + Dia todo No event - + Nenhum evento CYearWindow Y - + A CalendarWindow Calendar - + Calendário Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + O Calendário é uma ferramenta para visualizar datas e também uma agenda diária inteligente para agendar todas as coisas na vida. Calendarmainwindow Calendar - + Calendário Manage - + Gerir Privacy Policy - + Política de privacidade Syncing... - + A sincronizar... Sync successful - + Sincronização bem sucedida Sync failed, please try later - + Falha ao sincronizar. Tente novamente mais tarde CenterWidget All Day - + Dia todo @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Editar Delete - + Eliminar New event - + Novo evento New Event - + Novo evento JobTypeListView You are deleting an event type. - + Está a eliminar um tipo de evento. All events under this type will be deleted and cannot be recovered. - + Todos os eventos deste tipo serão eliminados e não podem ser recuperados. Cancel button - + Cancelar Delete button - + Eliminar QObject Account settings - + Definições de conta Account - + Conta Select items to be synced - + Selecionar itens a sincronizar Events - + Eventos General settings - + Definições gerais Sync interval - + Intervalo de sincronização Manage calendar - + Gerir calendário Calendar account - + Conta de calendário Event types - + Tipos de evento General - + Geral First day of week - + Primeiro dia da semana Time - + Hora @@ -836,7 +854,7 @@ Today Return - Hoje + Hoje @@ -844,86 +862,86 @@ Today Return Today - Hoje + Hoje ScheduleTypeEditDlg New event type - + Novo tipo de evento Edit event type - + Editar tipo de evento Name: - + Nome: Color: - + Cor: Cancel button - + Cancelar Save button - + Guardar The name can not only contain whitespaces - + O nome não pode conter apenas espaços em branco Enter a name please - + Introduza um nome Shortcut Help - + Ajuda Delete event - + Eliminar evento Copy - + Copiar Cut - + Cortar Paste - + Colar Delete - + Eliminar Select all - + Selecionar tudo SidebarCalendarWidget Y - + A M - + M @@ -931,7 +949,7 @@ Go button - + Ir @@ -939,19 +957,19 @@ Sign In button - + Iniciar sessão Sign Out button - + Terminar sessão YearFrame Y - + A @@ -959,7 +977,7 @@ Today Today - Hoje + Hoje - + \ No newline at end of file diff --git a/translations/dde-calendar-service_pt_BR.ts b/translations/dde-calendar-service_pt_BR.ts index 1201c133..c1ca3c58 100644 --- a/translations/dde-calendar-service_pt_BR.ts +++ b/translations/dde-calendar-service_pt_BR.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Conexão bem-sucedida Network error - + Erro de rede Server exception - + Exceção do servidor Storage full - + Armazenamento cheio AccountManager Local account - + Conta local Event types - + Tipos de eventos CColorPickerWidget Color - + Cor Cancel button - + Cancelar Save button - + Salvar CDayMonthView Monday - + Segunda-feira Tuesday - + Terça-feira Wednesday - + Quarta-feira Thursday - + Quinta-feira Friday - + Sexta-feira Saturday - + Sábado Sunday - + Domingo CDayWindow Y - + A M - + M D - + D Lunar - + Lunar CGraphicsView New Event - + Novo Evento CMonthScheduleNumItem %1 more - + %1 mais CMonthView New event - + Novo evento New Event - + Novo Evento CMonthWindow Y - + A CMyScheduleView My Event - + Evento OK button - + Ok Delete button - + Excluir Edit button - + Editar CPushButton New event type - + Novo tipo de evento CScheduleDlg New Event - + Novo Evento Edit Event - + Editar Evento End time must be greater than start time - + O tempo de término deve ser maior que o tempo de início OK button - + Ok Never - + Nunca At time of event - + No momento do evento 15 minutes before - + 15 minutos antes 30 minutes before - + 30 minutos antes 1 hour before - + 1 hora antes 1 day before - + 1 dia antes 2 days before - + 2 dias antes 1 week before - + 1 semana antes On start day (9:00 AM) - + No dia de início (9:00 AM) time(s) - + vez(es) Enter a name please - + Digite um nome, por favor The name can not only contain whitespaces - + O nome não pode conter apenas espaços em branco Type: - + Tipo: Description: - + Descrição: All Day: - + Dia Inteiro: Starts: - + Inicia em: Ends: - + Termina em: Remind Me: - + Lembre-me: Repeat: - + Repetir: End Repeat: - + Termina em: Calendar account: - + Conta de calendário: Calendar account - + Conta de calendário Type - + Tipo Description - + Descrição All Day - + Dia Inteiro Time: - + Horário: Time - + Horário Solar - + Solar Lunar - + Lunar Starts - + Inicia em Ends - + Termina em Remind Me - + Lembre-me Repeat - + Repetir Daily - + Diariamente Weekdays - + Dias úteis Weekly - + Semanalmente Monthly - + Mensalmente Yearly - + Anualmente End Repeat - + Termina em After - + Depois On - + Ativo Cancel button - + Cancelar Save button - + Salvar CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Todas as ocorrências de um evento repetitivo devem ter o mesmo status durante o dia inteiro. Do you want to change all occurrences? - + Alterar todas as ocorrências? Cancel button - + Cancelar Change All - + Alterar Tudo You are changing the repeating rule of this event. - + A regra de repetição deste evento será alterada. You are deleting an event. - + Um evento será excluído. Are you sure you want to delete this event? - + Excluir este evento? Delete button - + Excluir Do you want to delete all occurrences of this event, or only the selected occurrence? - + Excluir todas as ocorrências deste evento; ou apenas a ocorrência selecionada? Delete All - + Excluir Tudo Delete Only This Event - + Excluir Apenas Este Evento Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Excluir este evento e todas as suas ocorrências futuras; ou apenas a ocorrência selecionada? Delete All Future Events - + Excluir Todos os Eventos Futuros You are changing a repeating event. - + Um evento repetido será alterado. Do you want to change only this occurrence of the event, or all occurrences? - + Alterar apenas esta ocorrência do evento; ou todas as ocorrências? All - + Tudo Only This Event - + Apenas Este Evento Do you want to change only this occurrence of the event, or this and all future occurrences? - + Alterar apenas esta ocorrência do evento; ou esta e todas as ocorrências futuras? All Future Events - + Todos os Eventos Futuros You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Você selecionou um mês bissexto e será lembrado de acordo com as regras do calendário lunar. OK button - + Ok CScheduleSearchDateItem Y - + A M - + M D - + D CScheduleSearchItem Edit - + Editar Delete - + Excluir All Day - + Dia Inteiro CScheduleSearchView No search results - + Nenhum resultado encontrado CScheduleView ALL DAY - + DIA INTEIRO CSettingDialog - Sunday - + Manual + Manual - Monday - + 15 mins + 15 mins - 24-hour clock - + 30 mins + 30 mins - 12-hour clock - + 1 hour + 1 hora - Manual - + 24 hours + 24 horas - 15 mins - + Sync Now + Sincronizar Agora - 30 mins - + Last sync + Última sincronização - 1 hour - + Monday + Segunda-feira - 24 hours - + Sunday + Domingo - Sync Now - + 12-hour clock + Formato de 12 horas - Last sync - + 24-hour clock + Formato de 24 horas + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 minutos) (%1 hour) - + (%1 hora) (%1 hours) - + (%1 horas) CTitleWidget Y - + A M - + M W - + S D - + D Search events and festivals - + Procurar eventos e datas comemorativas CWeekWidget Sun - + Dom Mon - + Seg Tue - + Ter Wed - + Qua Thu - + Qui Fri - + Sex Sat - + Sáb CWeekWindow Week - + Semana Y - + A CYearScheduleView All Day - + Dia Inteiro No event - + Nenhum evento CYearWindow Y - + A CalendarWindow Calendar - + Calendário Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + O Calendário é uma ferramenta que permite agendar e visualizar eventos. Calendarmainwindow Calendar - + Calendário Manage - + Gerenciar Privacy Policy - + Política de Privacidade Syncing... - + Sincronizando... Sync successful - + Sincronização bem-sucedida Sync failed, please try later - + A sincronização falhou, tente novamente mais tarde CenterWidget All Day - + Dia Inteiro @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Editar Delete - + Excluir New event - + Novo evento New Event - + Novo Evento JobTypeListView You are deleting an event type. - + Você está a eliminar um tipo de evento. All events under this type will be deleted and cannot be recovered. - + Todos os eventos deste tipo serão eliminados e não poderão ser recuperados. Cancel button - + Cancelar. Delete button - + Excluir QObject Account settings - + Configurações de conta Account - + Conta Select items to be synced - + Selecionar itens para sincronizar Events - + Eventos General settings - + Definições gerais Sync interval - + Intervalo de sincronização Manage calendar - + Gerenciar calendário Calendar account - + Conta de calendário Event types - + Tipos de eventos General - + Geral First day of week - + Primeiro dia da semana Time - + Horário @@ -836,7 +854,7 @@ Today Return - Hoje + Hoje @@ -844,86 +862,86 @@ Today Return Today - Hoje + Hoje ScheduleTypeEditDlg New event type - + Novo tipo de evento Edit event type - + Editar o tipo de evento Name: - + Nome: Color: - + Cor: Cancel button - + Cancelar Save button - + Salvar The name can not only contain whitespaces - + O nome não pode ser apenas espaços em branco Enter a name please - + Digite um nome por favor Shortcut Help - + Ajuda Delete event - + Excluir evento Copy - + Copiar Cut - + Recortar Paste - + Colar Delete - + Excluir Select all - + Selecionar Tudo SidebarCalendarWidget Y - + A M - + M @@ -931,7 +949,7 @@ Go button - + Ir @@ -939,19 +957,19 @@ Sign In button - + Entrar Sign Out button - + Sair YearFrame Y - + A @@ -959,7 +977,7 @@ Today Today - Hoje + Hoje - + \ No newline at end of file diff --git a/translations/dde-calendar-service_ro.ts b/translations/dde-calendar-service_ro.ts index 4c532919..564115ca 100644 --- a/translations/dde-calendar-service_ro.ts +++ b/translations/dde-calendar-service_ro.ts @@ -35,63 +35,63 @@ CColorPickerWidget Color - + Culoare Cancel button - + Anulează Save button - + Salvare CDayMonthView Monday - + Luni Tuesday - + Marţi Wednesday - + Miercuri Thursday - + Joi Friday - + Vineri Saturday - + Sâmbătă Sunday - + Duminică CDayWindow Y - + Y M - + l D - + z Lunar @@ -102,54 +102,54 @@ CGraphicsView New Event - + Eveniment nou CMonthScheduleNumItem %1 more - + %1 mai mult CMonthView New event - + Eveniment nou New Event - + Eveniment nou CMonthWindow Y - + A CMyScheduleView My Event - + Evenimentul meu OK button - + Ok Delete button - + Ștergeți Edit button - + Editare @@ -163,60 +163,60 @@ CScheduleDlg New Event - + Eveniment nou Edit Event - + Editare eveniment End time must be greater than start time - + Ora de încheiere trebuie să fie mai mare decât ora de început OK button - + Ok Never - + Niciodată At time of event - + La momentul evenimentului 15 minutes before - + Cu 15 minute înainte 30 minutes before - + Cu 30 minute înainte 1 hour before - + Cu 1 oră înainte 1 day before - + Cu 1 zi înainte 2 days before - + Cu 2 zile înainte 1 week before - + Cu 1 săptămână înainte On start day (9:00 AM) - + Începutul zilei (9:00 AM) time(s) - + ori Enter a name please @@ -228,35 +228,35 @@ Type: - + Tip: Description: - + Descriere: All Day: - + Toată ziua: Starts: - + Începe: Ends: - + Se termină: Remind Me: - + Aminteşte-mi: Repeat: - + Repetă: End Repeat: - + Repetarea se termină: Calendar account: @@ -268,15 +268,15 @@ Type - + Tip Description - + Descriere All Day - + Toată ziua Time: @@ -296,142 +296,142 @@ Starts - + Începe Ends - + Se termină Remind Me - + Aminteşte-mi Repeat - + Repetă Daily - + Zilnic Weekdays - + Zilele saptămânii Weekly - + Săptămânal Monthly - + Lunar Yearly - + Anual End Repeat - + Opreşte repetarea After - + După On - + Pornire Cancel button - + Anulează Save button - + Salvare CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Toate aparițiile unui eveniment repetat trebuie să aibă același statut toată ziua. Do you want to change all occurrences? - + Doriți să schimbați toate aparițiile? Cancel button - + Anulează Change All - + Schimbă tot You are changing the repeating rule of this event. - + Modificați regula de repetare a acestui eveniment. You are deleting an event. - + Ştergeţi un eveniment. Are you sure you want to delete this event? - + Sigur doriţi să ştergeţi acest eveniment? Delete button - + Ștergeți Do you want to delete all occurrences of this event, or only the selected occurrence? - + Doriți să ștergeți toate aparițiile acestui eveniment sau doar evenimentul selectat? Delete All - + Şterge tot Delete Only This Event - + Şterge doar acest eveniment Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Doriți să ștergeți toate aparițiile acestui eveniment sau doar evenimentul selectat? Delete All Future Events - + Şterge toate evenimentele viitoare You are changing a repeating event. - + Modificați un eveniment care se repetă. Do you want to change only this occurrence of the event, or all occurrences? - + Doriți să schimbați doar această apariție a evenimentului sau toate evenimentele? All - + Tot Only This Event - + Doar acest eveniment Do you want to change only this occurrence of the event, or this and all future occurrences? - + Doriți să schimbați doar această apariție a evenimentului sau aceasta și toate evenimentele viitoare? All Future Events - + Toate evenimentele viitoare You have selected a leap month, and will be reminded according to the rules of the lunar calendar. @@ -440,97 +440,125 @@ OK button - + Ok CScheduleSearchDateItem Y - + A M - + L D - + Z CScheduleSearchItem Edit - + Editează Delete - + Șterge All Day - + Toată ziua CScheduleSearchView No search results - + Niciun rezultat la căutare CScheduleView ALL DAY - + TOATĂ ZIUA CSettingDialog - Sunday + import ICS file - Monday - + Manual + Manual - 24-hour clock + 15 mins - 12-hour clock + 30 mins - Manual - + 1 hour + 1 oră - 15 mins + 24 hours - 30 mins + Sync Now - 1 hour + Last sync - 24 hours + Monday + Luni + + + Tuesday + Marţi + + + Wednesday + Miercuri + + + Thursday + Joi + + + Friday + Vineri + + + Saturday + Sâmbătă + + + Sunday + Duminică + + + 12-hour clock - Sync Now + 24-hour clock - Last sync + Please go to the <a href='/'>Control Center</a> to change settings @@ -553,19 +581,19 @@ CTitleWidget Y - + A M - + L W - + S D - + Z Search events and festivals @@ -576,78 +604,78 @@ CWeekWidget Sun - + Dum Mon - + Lu Tue - + Mar Wed - + Mie Thu - + Joi Fri - + Vin Sat - + Sâm CWeekWindow Week - + Săptămână Y - + A CYearScheduleView All Day - + Toată ziua No event - + Nici un eveniment CYearWindow Y - + A CalendarWindow Calendar - + Calendar Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Calendarul este un instrument pentru a vizualiza datele și, de asemenea, un planificator inteligent zilnic pentru a programa toate lucrurile din viață. Calendarmainwindow Calendar - + Calendar Manage @@ -655,11 +683,11 @@ Privacy Policy - + Politica de Confidențialitate Syncing... - + Sincronizare... Sync successful @@ -674,7 +702,7 @@ CenterWidget All Day - + Toată ziua @@ -744,23 +772,31 @@ DragInfoGraphicsView Edit - + Editare Delete - + Ștergeți New event - + Eveniment nou New Event - + Eveniment nou JobTypeListView + + export + + + + import ICS file + + You are deleting an event type. @@ -772,12 +808,12 @@ Cancel button - + Anulează Delete button - + Ștergeți @@ -788,7 +824,7 @@ Account - + Cont Select items to be synced @@ -820,7 +856,7 @@ General - + General First day of week @@ -836,7 +872,7 @@ Today Return - Astăzi + Astăzi @@ -844,7 +880,7 @@ Today Return Today - Astăzi + Astăzi @@ -858,22 +894,30 @@ - Name: + Import ICS file + + Name: + Nume: + Color: + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + Cancel button - + Anulează Save button - + Salvare The name can not only contain whitespaces @@ -888,42 +932,42 @@ Shortcut Help - + Ajutor Delete event - + Ştergere eveniment Copy - + Copiere Cut - + Tăiere Paste - + Lipire Delete - + Ștergeți Select all - + Selectează totul SidebarCalendarWidget Y - + Y M - + l @@ -939,19 +983,19 @@ Sign In button - + Conectați-vă Sign Out button - + Deconectați-vă YearFrame Y - + A @@ -959,7 +1003,7 @@ Today Today - Astăzi + Astăzi diff --git a/translations/dde-calendar-service_ru.ts b/translations/dde-calendar-service_ru.ts index bf26f213..217355db 100644 --- a/translations/dde-calendar-service_ru.ts +++ b/translations/dde-calendar-service_ru.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Успешная синхронизация Network error - + Ошибка сети Server exception - + Исключение сервера Storage full - + Хранилище заполнено AccountManager Local account - + Учетная запись домена Event types - + CColorPickerWidget Color - + Цвет Cancel button - + Отмена Save button - + Сохранить CDayMonthView Monday - + Понедельник Tuesday - + Вторник Wednesday - + Среда Thursday - + Четверг Friday - + Пятница Saturday - + Суббота Sunday - + Воскресенье CDayWindow Y - + Г M - + М D - + Д Lunar - + Лунный CGraphicsView New Event - + Новое Событие CMonthScheduleNumItem %1 more - + более %1 CMonthView New event - + Новое событие New Event - + Новое Событие CMonthWindow Y - + Г CMyScheduleView My Event - + Моё событие OK button - + OK Delete button - + Удалить Edit button - + Редактировать CPushButton New event type - + Новый тип события CScheduleDlg New Event - + Новое событие Edit Event - + Редактировать событие End time must be greater than start time - + Время окончания должно быть больше времени начала OK button - + OK Never - + Никогда At time of event - + Во время события 15 minutes before - + За 15 минут до этого 30 minutes before - + За 30 минут до этого 1 hour before - + За 1 час до этого 1 day before - + За 1 день до этого 2 days before - + За 2 дня до этого 1 week before - + За 1 неделю до этого On start day (9:00 AM) - + В день начала (9:00) time(s) - + раз(а) Enter a name please - + Введите имя, пожалуйста The name can not only contain whitespaces - + Имя не может содержать только пробелы Type: - + Тип: Description: - + Описание: All Day: - + Весь день: Starts: - + Начинается: Ends: - + Заканчивается: Remind Me: - + Напомнить: Repeat: - + Повторять: End Repeat: - + Повторять до: Calendar account: - + Учетная запись календаря: Calendar account - + Учетная запись календаря: Type - + Тип Description - + Описание All Day - + Весь день Time: - + Время: Time - + Время Solar - + Солнечно Lunar - + Лунный Starts - + Начало Ends - + Конец Remind Me - + Напомнить Repeat - + Повторять Daily - + Ежедневно Weekdays - + По будням Weekly - + Еженедельно Monthly - + Ежемесячно Yearly - + Ежегодно End Repeat - + Повторять до: After - + После On - + Вкл. Cancel button - + Отмена Save button - + Сохранить CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Все экземпляры повторяющегося события должны иметь одинаковый статус в течение всего дня. Do you want to change all occurrences? - + Вы хотите изменить все экземпляры? Cancel button - + Отмена Change All - + Изменить все You are changing the repeating rule of this event. - + Вы изменяете правило повторения этого события. You are deleting an event. - + Вы удаляете событие. Are you sure you want to delete this event? - + Вы действительно хотите удалить событие? Delete button - + Удалить Do you want to delete all occurrences of this event, or only the selected occurrence? - + Вы хотите удалить все экземпляры данного события или только выбранного экземпляра? Delete All - + Удалить все Delete Only This Event - + Удалить только это событие Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Вы хотите удалить только это и будущие проявления события или только выбранные проявления? Delete All Future Events - + Удалить Все Будущие События You are changing a repeating event. - + Вы изменяете повторяющееся событие Do you want to change only this occurrence of the event, or all occurrences? - + Вы хотите изменить только это проявление события или все проявления. All - + Все Only This Event - + Только Это Событие Do you want to change only this occurrence of the event, or this and all future occurrences? - + Вы хотите изменить только это проявление данного события или всё событие и все будущие проявления? All Future Events - + Только Будущие События You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Вы выбрали високосный месяц, вы будете оповещены об этом в соответствии с правилами лунного календаря. OK button - + OK CScheduleSearchDateItem Y - + Г M - + М D - + Д CScheduleSearchItem Edit - + Правка Delete - + Удалить All Day - + Весь День CScheduleSearchView No search results - + Поиск результатов не дал CScheduleView ALL DAY - + ВЕСЬ ДЕНЬ CSettingDialog - Sunday - + Manual + Вручную - Monday - + 15 mins + 15 минут - 24-hour clock - + 30 mins + 30 минут - 12-hour clock - + 1 hour + 1 час - Manual - + 24 hours + 24 часа - 15 mins - + Sync Now + Синхронизировать Сейчас - 30 mins - + Last sync + Последняя синхронизация - 1 hour - + Monday + Понедельник - 24 hours - + Sunday + Воскресенье - Sync Now - + 12-hour clock + 12-часовой формат времени - Last sync - + 24-hour clock + 24-часовой + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 минут) (%1 hour) - + (%1 час) (%1 hours) - + (%1 часов) CTitleWidget Y - + Г M - + М W - + Н D - + Д Search events and festivals - + Поиск мероприятий и фестивалей CWeekWidget Sun - + Вс Mon - + Пн Tue - + Вт Wed - + Ср Thu - + Чт Fri - + Пт Sat - + Сб CWeekWindow Week - + Неделя Y - + Г CYearScheduleView All Day - + Весь День No event - + Нет события CYearWindow Y - + Г CalendarWindow Calendar - + Календарь Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Календарь - это инструмент для просмотра дат, а также умный ежедневник для планирования всех событий вашей повседневной жизни. Calendarmainwindow Calendar - + Календарь Manage - + Privacy Policy - + Политика конфиденциальности Syncing... - + Синхронизация... Sync successful - + Успешная синхронизация Sync failed, please try later - + Не удалось синхронизировать, пожалуйста, попробуйте позже CenterWidget All Day - + Весь День: @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Редактировать Delete - + Удалить New event - + Новое событие New Event - + Новое Событие JobTypeListView You are deleting an event type. - + Вы удаляете тип события. All events under this type will be deleted and cannot be recovered. - + Все события этого типа будут удалены и не подлежат восстановлению. Cancel button - + Отмена Delete button - + Удалить QObject Account settings - + Настройки учетной записи Account - + Учетная запись Select items to be synced - + Выберите элементы для синхронизации Events - + События General settings - + Общие настройки Sync interval - + Интервал синхронизации Manage calendar - + Calendar account - + Учетная запись календаря: Event types - + Типы событий General - + Общие First day of week - + Первый день недели Time - + Время @@ -836,7 +854,7 @@ Today Return - Сегодня + Сегодня @@ -844,86 +862,86 @@ Today Return Today - Сегодня + Сегодня ScheduleTypeEditDlg New event type - + Новый тип события Edit event type - + Редактировать тип события Name: - + Имя: Color: - + Цвет: Cancel button - + Отмена Save button - + Сохранить The name can not only contain whitespaces - + Имя не может содержать только пробелы Enter a name please - + Введите имя, пожалуйста Shortcut Help - + Помощь Delete event - + Удалить событие Copy - + Копировать Cut - + Вырезать Paste - + Вставить Delete - + Удалить Select all - + Выбрать всё SidebarCalendarWidget Y - + Г M - + М @@ -931,7 +949,7 @@ Go button - + Вперед @@ -939,19 +957,19 @@ Sign In button - + Войти Sign Out button - + Выйти YearFrame Y - + Г @@ -959,7 +977,7 @@ Today Today - Сегодня + Сегодня - + \ No newline at end of file diff --git a/translations/dde-calendar-service_si.ts b/translations/dde-calendar-service_si.ts index 4fd2720c..302e6e86 100644 --- a/translations/dde-calendar-service_si.ts +++ b/translations/dde-calendar-service_si.ts @@ -4,22 +4,18 @@ AccountItem - Sync successful - Network error - Server exception - Storage full @@ -27,12 +23,10 @@ AccountManager - Local account - Event types @@ -40,80 +34,66 @@ CColorPickerWidget - Color - Cancel button - + අවලංගු කරන්න - Save button - + සුරකින්න CDayMonthView - Monday - + සඳුදා - Tuesday - + අඟහරුවාදා - Wednesday - + බදාදා - Thursday - + බ්‍රහස්පතින්දා - Friday - + සිකුරාදා - Saturday - + සෙනසුරාදා - Sunday - + ඉරිදා CDayWindow - Y - + වස - M - + මස - D - + දින - Lunar @@ -121,70 +101,60 @@ CGraphicsView - New Event - + නව හමුවක් CMonthScheduleNumItem - %1 more - + තවත් %1 CMonthView - New event - + නව සිදුවීමක් - New Event - + නව හමුවක් CMonthWindow - Y - + වස CMyScheduleView - My Event - + මගේ හමුව - OK button - + හරි - Delete button - + මකා දමන්න - Edit button - + සංස්කරණය කරන්න CPushButton - New event type @@ -192,520 +162,417 @@ CScheduleDlg - - - New Event - + නව හමුවක් - Edit Event - + හමුව සංස්කරණය කරන්න - End time must be greater than start time - + අවසන් කෙරෙන වේලාව ආරම්භ කෙරෙන වේලාවට වඩා වැඩි විය යුතුය - OK button - + හරි - - - - - - Never - + කිසිදා නැත - At time of event - + හමුව යොදාගත් වේලාවේදී - 15 minutes before - + මිනිත්තු 15 කට පෙර - 30 minutes before - + මින්ත්තු 30 කට පෙර - 1 hour before - + පැය 1 කට පෙර - - 1 day before - + දින 1 කට පෙර - - 2 days before - + දින 2 කට පෙර - - 1 week before - + සති 1 කට පෙර - On start day (9:00 AM) - + ඇරඹෙන දින (පෙ.ව 9.00) - - - - time(s) - + වේලාව (න්) - Enter a name please - The name can not only contain whitespaces - - Type: - + වර්ගය: - - Description: - + විස්තරය: - - All Day: - + දිනය පුරාම: - - Starts: - + අ‍ාරම්භය: - - Ends: - + අවසානය: - - Remind Me: - + මට මතක් කරන්න: - - Repeat: - + නැවත කරන්න: - - End Repeat: - + පුනරාවර්තනය අවසන් කරන්න: - Calendar account: - Calendar account - Type - + වර්ගය - Description - + විස්තරය - All Day - + දිනය පුරාම - Time: - Time - Solar - Lunar - Starts - + ආරම්භය - Ends - + අවසානය - Remind Me - + මට මතක් කරන්න - Repeat - + පුනරාවර්තන - - Daily - + දිනපතා - - Weekdays - + සතියේ දින - - Weekly - + සති පතා - - - Monthly - + මාසිකව - - - Yearly - + වාර්ෂිකව - End Repeat - + පුනරාවර්තනය අවසන් කරන්න - After - + පසුව - On - + මත - Cancel button - + අවලංගු කරන්න - Save button - + සුරකින්න CScheduleOperation - All occurrences of a repeating event must have the same all-day status. - + පුනරාවර්තන හමුවන්ගේ සියලු හමුවන් දිනය පුරා තත්වයේ තිබිය යුතුය. - - Do you want to change all occurrences? - + ඔබට සියලු පුනරාවර්ථනයන් වෙනස් කිරීමද අවශ්‍යද? - - - - - - - Cancel button - + අවලංගු කරන්න - - Change All - + සියල්ල වෙනස් කරන්න - You are changing the repeating rule of this event. - + ඔබ මෙම හමුවේ පුනරාවර්තන රීතීන් වෙනස් කරමින් සිටී. - - - You are deleting an event. - + ඔබ හමුවක් මකා දමයි. - Are you sure you want to delete this event? - + මෙම හමුව මකා දැමීමට අවශ්‍ය බව ඔබට විශ්වාසද? - Delete button - + මකා දමන්න - Do you want to delete all occurrences of this event, or only the selected occurrence? - + මෙම හමුවේ සියලුම පුනරාවර්තනයන් මකා දැමීමට ඔබට අවශ්‍යද, නැතහොත් තෝරාගත් හමුව පමණක්ද? - Delete All - + සියල්ල මකා දමන්න - - Delete Only This Event - + මෙම හමුව පමණක් මකා දමන්න - Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + ඔබට මෙම හමුව සහ මෙම හමුවේ සැලසුම් කල සියලු හමුවන් මකා දැමීමට අවශ්‍යද, නැතහොත් මෙම තෝරාගත් හමුව පමණද? - Delete All Future Events - + සියලු යොදාගත් හමුවන් මකා දමන්න - - You are changing a repeating event. - + ඔබ පුනරාවර්තන හමුවක් වෙනස් කරමින් සිටී. - Do you want to change only this occurrence of the event, or all occurrences? - + ඔබට මෙම පුනරාවර්තන හමුවේ මෙම හමුව පමණක් වෙනස් කිරීමට අවශ්‍යද, නැතිනම් සියලු පුනරාවර්තනයන් වෙනස් කල යුතුද? - All - + සියල්ලම - - Only This Event - + මෙම හමුව පමණි - Do you want to change only this occurrence of the event, or this and all future occurrences? - + ඔබට මෙම හමුව සහ මෙම හමුවේ සැලසුම් කල සියලු හමුවන් වෙනස් කිරීමට අවශ්‍යද, නැතහොත් මෙම තෝරාගත් හමුව පමණද? - All Future Events - + සියලුම අනාගත හමුවන් - You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - OK button - + හරි CScheduleSearchDateItem - Y - + වස - M - + මස - D - + දින CScheduleSearchItem - Edit - + සංස්කරණය කරන්න - Delete - + මකා දමන්න - All Day - + දිනය පුරාම CScheduleSearchView - No search results - + සෙවුම් ප්‍රතිඵල නොමැත CScheduleView - ALL DAY - + දිනය පුරාම CSettingDialog - - Sunday + import ICS file - - Monday - + Manual + සව්‍යං - - 24-hour clock + 15 mins - - 12-hour clock + 30 mins - - Manual + 1 hour - - 15 mins + 24 hours - - 30 mins + Sync Now - - 1 hour + Last sync - - 24 hours + Monday + සඳුදා + + + Tuesday + අඟහරුවාදා + + + Wednesday + බදාදා + + + Thursday + බ්‍රහස්පතින්දා + + + Friday + සිකුරාදා + + + Saturday + සෙනසුරාදා + + + Sunday + ඉරිදා + + + 12-hour clock - - Sync Now + 24-hour clock - - Last sync + Please go to the <a href='/'>Control Center</a> to change settings CTimeEdit - (%1 mins) - (%1 hour) - (%1 hours) @@ -713,28 +580,22 @@ CTitleWidget - Y - + වස - M - + මස - W - + සති - D - + දින - - Search events and festivals @@ -742,118 +603,97 @@ CWeekWidget - Sun - + ඉරි. - Mon - + සදු. - Tue - + අග. - Wed - + බදා. - Thu - + බ්‍රහස්. - Fri - + සිකු. - Sat - + සෙන. CWeekWindow - Week - + සතිය - Y - + වර් CYearScheduleView - - All Day - + දිනය පුරාම - No event - + හමුවන් නොමැත CYearWindow - Y - + වර් CalendarWindow - Calendar - + දින දසුන - Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + දින දසුන යනු දිනයන් බැලීමට මෙන්ම ජීවිතයේ සෑම දෙයක්ම සැලසුම් කිරීමට ‍භාවිත කල හැකි දෛනික සැලසුම්කරන යෙදවුමකි. Calendarmainwindow - Calendar - + දින දසුන - Manage - Privacy Policy - Syncing... - + සමමුහුර්ත වෙමින්... - Sync successful - Sync failed, please try later @@ -861,205 +701,168 @@ CenterWidget - All Day - + දිනය පුරාම DAccountDataBase - Work - + කාර්යය - Life - + ජීවිතය - Other - + වෙනත් DAlarmManager - - - - Close button - වසා දමන්න + වසා දමන්න - One day before start - ආරම්භ කිරීමට ඇත්තේ එක් දිනක් පමණි + ආරම්භ කිරීමට ඇත්තේ එක් දිනක් පමණි - Remind me tomorrow - මට හෙට මතක් කරන්න + මට හෙට මතක් කරන්න - Remind me later - මට පසුව මතක් කරන්න + මට පසුව මතක් කරන්න - 15 mins later - 1 hour later - 4 hours later - - - Tomorrow - හෙට + හෙට - Schedule Reminder - මතක් කිරීමක් සකසන්න + මතක් කිරීමක් සකසන්න - - %1 to %2 - - Today - අද + අද DragInfoGraphicsView - Edit - + සංස්කරණය කරන්න - Delete - + මකා දමන්න - New event - + නව සිදුවීමක් - New Event - + නව හමුවක් JobTypeListView - + export + + + + import ICS file + + + You are deleting an event type. - All events under this type will be deleted and cannot be recovered. - Cancel button - + අවලංගු කරන්න - Delete button - + මකා දමන්න QObject - Account settings - Account - + පරිශීලක ගිණුම - Select items to be synced - Events - - General settings - Sync interval - - Manage calendar - Calendar account - - Event types - General - + පොදු - First day of week - Time @@ -1067,64 +870,60 @@ Return - Today Return - අද + අද Return Today - - - Today Return Today - අද + අද ScheduleTypeEditDlg - New event type - Edit event type - - Name: + Import ICS file - + Name: + නම: + + Color: - + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + Cancel button - + අවලංගු කරන්න - Save button - + සුරකින්න - The name can not only contain whitespaces - Enter a name please @@ -1132,58 +931,48 @@ Shortcut - Help - + උදව් - Delete event - + හමුව මකා දමන්න - Copy - + පිටපත් කරන්න - Cut - + කපන්න - Paste - + අලවන්න - Delete - + මකන්න - Select all - + සියල්ල ලකුණු කරන්න SidebarCalendarWidget - Y - + වස - M - + මස TimeJumpDialog - Go button @@ -1192,40 +981,29 @@ UserloginWidget - Sign In button - + පුරනය වන්න - Sign Out button - + ඉවත් වන්න YearFrame - Y - + වර් today - - - - - - - - Today Today - අද + අද diff --git a/translations/dde-calendar-service_sk.ts b/translations/dde-calendar-service_sk.ts index 2ce27b94..5d36288f 100644 --- a/translations/dde-calendar-service_sk.ts +++ b/translations/dde-calendar-service_sk.ts @@ -1,1231 +1,983 @@ - - - + AccountItem - Sync successful - + Synchronizácia úspešná - Network error - + Chyba siete - Server exception - + - Storage full - + Úložisko je plné AccountManager - Local account - + Miestny účet - Event types - + CColorPickerWidget - Color - + Farba - Cancel button - + Zrušiť - Save button - + Uložiť CDayMonthView - Monday - + Pondelok - Tuesday - + Utorok - Wednesday - + Streda - Thursday - + Štvrtok - Friday - + Piatok - Saturday - + Sobota - Sunday - + Nedeľa CDayWindow - Y - + R - M - + M - D - + D - Lunar - + CGraphicsView - New Event - + Nová udalosť CMonthScheduleNumItem - %1 more - + ešte %1 CMonthView - New event - + Nová udalosť - New Event - + Nová udalosť CMonthWindow - Y - + R CMyScheduleView - My Event - + Moja udalosť - OK button - + OK - Delete button - + Vymazať - Edit button - + Upraviť CPushButton - New event type - + Nový typ udalosti CScheduleDlg - - - New Event - + Nová udalosť - Edit Event - + Upraviť udalosť - End time must be greater than start time - + Čas ukončenia musí byť neskôr ako čas začiatku - OK button - + OK - - - - - - Never - + Nikdy - At time of event - + V čase udalosti - 15 minutes before - + 15 minút pred - 30 minutes before - + 30 minút pred - 1 hour before - + 1 hodinu pred - - 1 day before - + 1 deň pred - - 2 days before - + 2 dni pred - - 1 week before - + 1 týždeň pred - On start day (9:00 AM) - + V deň začiatku (9:00) - - - - time(s) - + krát - Enter a name please - + - The name can not only contain whitespaces - + - - Type: - + Typ: - - Description: - + Popis: - - All Day: - + Celý deň: - - Starts: - + Začína: - - Ends: - + Končí: - - Remind Me: - + Pripomenúť - - Repeat: - + Opakovať: - - End Repeat: - + Ukončiť opakovanie: - Calendar account: - + - Calendar account - + - Type - + Typ - Description - + Popis - All Day - + Celý deň - Time: - + Čas: - Time - + Čas - Solar - + - Lunar - + - Starts - + Začína - Ends - + Končí - Remind Me - + Pripomenúť - Repeat - + Opakovať - - Daily - + Denne - - Weekdays - + Pracovné dni - - Weekly - + Týždenne - - - Monthly - + Mesačne - - - Yearly - + Ročne - End Repeat - + Ukončiť opakovanie - After - + Po - On - + Zapnuté - Cancel button - + Zrušiť - Save button - + Uložiť CScheduleOperation - All occurrences of a repeating event must have the same all-day status. - + Všetky výskyty opakujúcej sa udalosti musia mať rovnaký celodenný stav. - - Do you want to change all occurrences? - + Chcete zmeniť všetky výskyty? - - - - - - - Cancel button - + Zrušiť - - Change All - + Zmeniť všetky - You are changing the repeating rule of this event. - + Meníte pravidlo opakovania tejto udalosti. - - - You are deleting an event. - + Odstraňujete udalosť. - Are you sure you want to delete this event? - + Naozaj chcete odstrániť túto udalosť? - Delete button - + Vymazať - Do you want to delete all occurrences of this event, or only the selected occurrence? - + Chcete odstrániť všetky výskyty tejto udalosti alebo iba vybratú udalosť? - Delete All - + Vymazať všetko - - Delete Only This Event - + Vymazať iba túto udalosť - Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Chcete odstrániť tento a všetky budúce výskyty tejto udalosti alebo iba vybratú udalosť? - Delete All Future Events - + Vymazať všetky budúce udalosti - - You are changing a repeating event. - + Meníte opakujúcu sa udalosť. - Do you want to change only this occurrence of the event, or all occurrences? - + Chcete zmeniť iba tento výskyt udalosti alebo všetky jej výskyty? - All - + Všetky - - Only This Event - + Iba táto udalosť - Do you want to change only this occurrence of the event, or this and all future occurrences? - + Chcete zmeniť iba tento výskyt udalosti alebo túto a aj všetky budúce udalosti? - All Future Events - + Všetky budúce udalosti - You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + - OK button - + OK CScheduleSearchDateItem - Y - + R - M - + M - D - + D CScheduleSearchItem - Edit - + Upraviť - Delete - + Vymazať - All Day - + Celý deň CScheduleSearchView - No search results - + Žiadne výsledky vyhľadávania CScheduleView - ALL DAY - + CELÝ DEŇ CSettingDialog - - Sunday - + Manual + Ručné - - Monday - + 15 mins + 15 minút - - 24-hour clock - + 30 mins + 30 minút - - 12-hour clock - + 1 hour + 1 hodina - - Manual - + 24 hours + 24 hodín - - 15 mins - + Sync Now + Synchronizovať teraz - - 30 mins - + Last sync + - - 1 hour - + Monday + Pondelok - - 24 hours - + Sunday + Nedeľa - - Sync Now - + 12-hour clock + 12-hodinový čas - - Last sync - + 24-hour clock + 24-hodinový čas + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit - (%1 mins) - + (%1 minút) - (%1 hour) - + (%1 hodina) - (%1 hours) - + (%1 hodín) CTitleWidget - Y - + R - M - + M - W - + T - D - + D - - Search events and festivals - + CWeekWidget - Sun - + Ne - Mon - + Po - Tue - + Ut - Wed - + St - Thu - + Št - Fri - + Pia - Sat - + So CWeekWindow - Week - + Týždeň - Y - + R CYearScheduleView - - All Day - + Celý deň - No event - + Žiadna udalosť CYearWindow - Y - + R CalendarWindow - Calendar - + Kalendár - Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Kalendár je nástroj na prezeranie dátumov a tiež inteligentný denný plánovač na plánovanie všetkých vecí v živote. Calendarmainwindow - Calendar - + Kalendár - Manage - + Spravovať - Privacy Policy - + Zásady ochrany osobných údajov - Syncing... - + Synchronizácia... - Sync successful - + Synchronizácia úspešná - Sync failed, please try later - + CenterWidget - All Day - + Celý deň DAccountDataBase - Work - + Práca - Life - + Život - Other - + Ostatné DAlarmManager - - - - Close button - Zavrieť + Zavrieť - One day before start - Jeden deň pred začiatkom + Jeden deň pred začiatkom - Remind me tomorrow - Pripomenúť zajtra + Pripomenúť zajtra - Remind me later - Pripomenúť neskôr + Pripomenúť neskôr - 15 mins later - + o 15 minút neskôr - 1 hour later - + o 1 hodinu neskôr - 4 hours later - + o 4 hodiny neskôr - - - Tomorrow - Zajtra + Zajtra - Schedule Reminder - Nastaviť pripomienku + Nastaviť pripomienku - - %1 to %2 - + %1 do %2 - - Today - Dnes + Dnes DragInfoGraphicsView - Edit - + Upraviť - Delete - + Vymazať - New event - + Nová udalosť - New Event - + Nová udalosť JobTypeListView - You are deleting an event type. - + - All events under this type will be deleted and cannot be recovered. - + - Cancel button - + Zrušiť - Delete button - + Vymazať QObject - Account settings - + Nastavenia účtu - Account - + Účet - Select items to be synced - + - Events - + Udalosti - - General settings - + Všeobecné nastavenia - Sync interval - + - - Manage calendar - + - Calendar account - + - - Event types - + - General - + Hlavné - First day of week - + - Time - + Čas Return - Today Return - Dnes + Dnes Return Today - - - Today Return Today - Dnes + Dnes ScheduleTypeEditDlg - New event type - + Nový typ udalosti - Edit event type - + Upraviť typ udalosti - Name: - + Názov: - Color: - + Farba: - Cancel button - + Zrušiť - Save button - + Uložiť - The name can not only contain whitespaces - + - Enter a name please - + Shortcut - Help - + Nápoveda - Delete event - + Vymazať udalosť - Copy - + Kopírovať - Cut - + Vystrihnúť - Paste - + Prilepiť - Delete - + Vymazať - Select all - + Vybrať všetko SidebarCalendarWidget - Y - + R - M - + M TimeJumpDialog - Go button - + Prejsť UserloginWidget - Sign In button - + Prihlásiť sa - Sign Out button - + Odhlásiť sa YearFrame - Y - + R today - - - - - - - - Today Today - Dnes + Dnes - + \ No newline at end of file diff --git a/translations/dde-calendar-service_sl.ts b/translations/dde-calendar-service_sl.ts index c4cb6988..aaa1be2a 100644 --- a/translations/dde-calendar-service_sl.ts +++ b/translations/dde-calendar-service_sl.ts @@ -35,63 +35,63 @@ CColorPickerWidget Color - + Barva Cancel button - + Prekliči Save button - + Shrani CDayMonthView Monday - + Ponedeljek Tuesday - + Torek Wednesday - + Sreda Thursday - + Četrtek Friday - + Petek Saturday - + Sobota Sunday - + Nedelja CDayWindow Y - + L M - + M D - + D Lunar @@ -102,54 +102,54 @@ CGraphicsView New Event - + Nov dogodek CMonthScheduleNumItem %1 more - + %1 več CMonthView New event - + Nov dogodek New Event - + Nov dogodek CMonthWindow Y - + L CMyScheduleView My Event - + Moj dogodek OK button - + V redu Delete button - + Izbriši Edit button - + Uredi @@ -163,60 +163,60 @@ CScheduleDlg New Event - + Nov dogodek Edit Event - + Uredi dogodek End time must be greater than start time - + Končni čas mora biti kasnejši od začetnega OK button - + V redu Never - + Nikoli At time of event - + Ob času dogodka 15 minutes before - + 15 minut prej 30 minutes before - + 30 minut prej 1 hour before - + 1 uro prej 1 day before - + 1 dan prej 2 days before - + 2 dni prej 1 week before - + 1 teden prej On start day (9:00 AM) - + Na dan dogodka (9:00) time(s) - + čas (s) Enter a name please @@ -228,35 +228,35 @@ Type: - + Vrsta: Description: - + Opis: All Day: - + Cel dan: Starts: - + Začetek: Ends: - + Konec: Remind Me: - + Opomnik: Repeat: - + Ponovi: End Repeat: - + Konec ponavljanj: Calendar account: @@ -268,15 +268,15 @@ Type - + Vrsta Description - + Opis All Day - + Cel dan Time: @@ -284,7 +284,7 @@ Time - + Čas Solar @@ -296,142 +296,142 @@ Starts - + Začetek Ends - + Konec Remind Me - + Opomnik Repeat - + Ponovitev Daily - + Dnevno Weekdays - + Ob dnevih Weekly - + Tedensko Monthly - + Mesečno Yearly - + Letno End Repeat - + Konec ponavljanj After - + Po On - + Na Cancel button - + Prekini Save button - + Shrani CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Vsako pojavljanje ponavljajočega dogodka mora imeti enak celodnevni status. Do you want to change all occurrences? - + Želite spremeniti vsa pojavljanja? Cancel button - + Prekini Change All - + Spremeni vse You are changing the repeating rule of this event. - + Spreminjate ponavljajoče se pravilo za ta dogodek. You are deleting an event. - + Brišete dogodek. Are you sure you want to delete this event? - + Želite res izbrisati ta dogodek? Delete button - + Izbriši Do you want to delete all occurrences of this event, or only the selected occurrence? - + Želite izbrisati vsa pojavljanja tega dogodka, ali zgolj izbrana? Delete All - + Izbriši vse Delete Only This Event - + Izbriši le ta dogodek Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Želite izbrisati to in vsa ostala pojavljanja tega dogodka ali zgolj izbrana pojavljanja? Delete All Future Events - + Izbriši vse prihodnje dogodke You are changing a repeating event. - + Spreminjate ponavljajoči se dogodek. Do you want to change only this occurrence of the event, or all occurrences? - + Želite spremeniti le to pojavitev dogodka ali vsa pojavljanja? All - + Vse Only This Event - + Zgolj ta dogodek Do you want to change only this occurrence of the event, or this and all future occurrences? - + Ali želite spremeniti le ta pojav dogodka ali vse prihodnje pojave? All Future Events - + Vse prihodnje dogodke You have selected a leap month, and will be reminded according to the rules of the lunar calendar. @@ -440,97 +440,125 @@ OK button - + V redu CScheduleSearchDateItem Y - + L M - + M D - + D CScheduleSearchItem Edit - + Uredi Delete - + Izbriši All Day - + Cel dan CScheduleSearchView No search results - + Ni rezultatov iskanja CScheduleView ALL DAY - + CEL DAN CSettingDialog - Sunday + import ICS file - Monday - + Manual + Ročno - 24-hour clock + 15 mins - 12-hour clock + 30 mins - Manual - + 1 hour + 1 ura - 15 mins + 24 hours - 30 mins + Sync Now - 1 hour + Last sync - 24 hours + Monday + Ponedeljek + + + Tuesday + Torek + + + Wednesday + Sreda + + + Thursday + Četrtek + + + Friday + Petek + + + Saturday + Sobota + + + Sunday + Nedelja + + + 12-hour clock - Sync Now + 24-hour clock - Last sync + Please go to the <a href='/'>Control Center</a> to change settings @@ -553,19 +581,19 @@ CTitleWidget Y - + L M - + M W - + T D - + D Search events and festivals @@ -576,78 +604,78 @@ CWeekWidget Sun - + Ned Mon - + Pon Tue - + Tor Wed - + Sre Thu - + Čet Fri - + Pet Sat - + Sob CWeekWindow Week - + Teden Y - + L CYearScheduleView All Day - + Cel dan No event - + Ni dogodka CYearWindow Y - + L CalendarWindow Calendar - + Koledar Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Koledar je orodje za prikaz datumov, a tudi pametni terminski planer za načrtovanje življenjskih dogodkov. Calendarmainwindow Calendar - + Koledar Manage @@ -655,11 +683,11 @@ Privacy Policy - + Pravilnik zasebnosti Syncing... - + Sinhronizacija... Sync successful @@ -674,7 +702,7 @@ CenterWidget All Day - + Cel dan @@ -744,23 +772,31 @@ DragInfoGraphicsView Edit - + Uredi Delete - + Izbriši New event - + Nov dogodek New Event - + Nov dogodek JobTypeListView + + export + + + + import ICS file + + You are deleting an event type. @@ -772,12 +808,12 @@ Cancel button - + Prekliči Delete button - + Izbriši @@ -788,7 +824,7 @@ Account - + Račun Select items to be synced @@ -820,7 +856,7 @@ General - + Splošno First day of week @@ -828,7 +864,7 @@ Time - + Čas @@ -836,7 +872,7 @@ Today Return - Danes + Danes @@ -844,7 +880,7 @@ Today Return Today - Danes + Danes @@ -858,22 +894,30 @@ - Name: + Import ICS file + + Name: + Ime: + Color: + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + Cancel button - + Prekliči Save button - + Shrani The name can not only contain whitespaces @@ -888,42 +932,42 @@ Shortcut Help - + Pomoč Delete event - + Izbriši dogodek Copy - + Kopiraj Cut - + Izreži Paste - + Prilepi Delete - + Izbriši Select all - + Izberi vse SidebarCalendarWidget Y - + L M - + M @@ -939,19 +983,19 @@ Sign In button - + Prijava Sign Out button - + Odjava YearFrame Y - + Y @@ -959,7 +1003,7 @@ Today Today - Danes + Danes diff --git a/translations/dde-calendar-service_sq.ts b/translations/dde-calendar-service_sq.ts index fe6aa455..41dfc5a8 100644 --- a/translations/dde-calendar-service_sq.ts +++ b/translations/dde-calendar-service_sq.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Njëkohësim i suksesshëm Network error - + Gabim rrjeti Server exception - + Përjashtim në shërbyes Storage full - + Depozitë e plotë AccountManager Local account - + Llogari vendore Event types - + Lloje veprimtarish CColorPickerWidget Color - + Ngjyrë Cancel button - + Anuloje Save button - + Ruaje CDayMonthView Monday - + E hënë Tuesday - + E martë Wednesday - + E mërkurë Thursday - + E enjte Friday - + E premte Saturday - + E shtunë Sunday - + E diel CDayWindow Y - + V M - + M D - + D Lunar - + Hënor CGraphicsView New Event - + Veprimtari e Re CMonthScheduleNumItem %1 more - + %1 më tepër CMonthView New event - + Veprimtari e re New Event - + Veprimtari e Re CMonthWindow Y - + V CMyScheduleView My Event - + Veprimtari e Imja OK button - + OK Delete button - + Fshije Edit button - + Përpunojeni CPushButton New event type - + Lloj i ri veprimtarie CScheduleDlg New Event - + Veprimtari e Re Edit Event - + Përpunoni Veprimtari End time must be greater than start time - + Koha e përfundimit duhet të jetë më e madhe se koha e fillimit OK button - + OK Never - + Kurrë At time of event - + Në kohën e veprimtarisë 15 minutes before - + 15 minuta para 30 minutes before - + 30 minuta para 1 hour before - + 1 orë para 1 day before - + 1 ditë para 2 days before - + 2 ditë para 1 week before - + 1 javë para On start day (9:00 AM) - + Ditën e fillimit (9:00 AM) time(s) - + kohë() Enter a name please - + Ju lutemi, jepni një emër The name can not only contain whitespaces - + Emri s’mund të përmbajë vetëm hapësira të zbrazëta Type: - + Lloj: Description: - + Përshkrim: All Day: - + Tërë Ditën: Starts: - + Fillon më: Ends: - + Përfundon më: Remind Me: - + Kujtoma: Repeat: - + Përsërite: End Repeat: - + Përfundoje Përsëritjen Më: Calendar account: - + Llogari Kalendari: Calendar account - + Llogari Kalendari Type - + Lloj Description - + Përshkrim All Day - + Tërë Ditën Time: - + Kohë: Time - + Kohë Solar - + Diellore Lunar - + Hënore Starts - + Fillon më Ends - + Përfundon më Remind Me - + Kujtoma më Repeat - + Përsërite Daily - + Ditore Weekdays - + Ditë të javës Weekly - + Çdo javë Monthly - + Çdo muaj Yearly - + Çdo vit End Repeat - + Përfundoje Përsëritjen Më After - + Pas On - + Cancel button - + Anuloje Save button - + Ruaje CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Krejt rastet e një veprimtarie që përsëritet duhet të kenë të njëjtën gjendje gjithë-ditën. Do you want to change all occurrences? - + Doni të ndryshohen krejt përsëritjet? Cancel button - + Anuloje Change All - + Ndryshoji Krejt You are changing the repeating rule of this event. - + Po ndryshoni rregullin e përsëritjes së kësaj veprimtarie. You are deleting an event. - + Po fshini një veprimtari. Are you sure you want to delete this event? - + Jeni i sigurt se doni të fshihet kjo veprimtari? Delete button - + Fshije Do you want to delete all occurrences of this event, or only the selected occurrence? - + Doni të fshihen krejt përsëritjet e kësaj veprimtarie, apo vetëm përsëritjen e përzgjedhur? Delete All - + Fshiji Krejt Delete Only This Event - + Fshi Vetëm Këtë Veprimtari Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Doni të fshihet kjo dhe krejt përsëritjet në të ardhmen të kësaj veprimtarie, apo vetëm përsëritjen e përzgjedhur? Delete All Future Events - + Fshi Krejt Veprimtaritë e Ardhshme You are changing a repeating event. - + Po ndryshoni një veprimtari me përsëritje. Do you want to change only this occurrence of the event, or all occurrences? - + Doni të ndryshohet vetëm kjo përsëritje e veprimtarisë, apo krejt përsëritjet? All - + Krejt Only This Event - + Vetëm Këtë Veprimtari Do you want to change only this occurrence of the event, or this and all future occurrences? - + Doni të ndryshohet vetëm kjo përsëritje e veprimtarisë, apo këtë dhe krejt përsëritjet në të ardhmen? All Future Events - + Krejt Veprimtaritë e Ardhshme You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Keni përzgjedhur një muaj të brishtë dhe do t’ju kujtohet në përputhje me rregullat e kalendarit hënor. OK button - + OK CScheduleSearchDateItem Y - + V M - + M D - + D CScheduleSearchItem Edit - + Përpunojeni Delete - + Fshije All Day - + Tërë Ditën CScheduleSearchView No search results - + S’ka përfundime kërkimi CScheduleView ALL DAY - + TËRË DITËN CSettingDialog - Sunday - + Manual + Dorazi - Monday - + 15 mins + 15 min. - 24-hour clock - + 30 mins + 30 min. - 12-hour clock - + 1 hour + 1 orë - Manual - + 24 hours + 24 orë - 15 mins - + Sync Now + Njëkohësoje Tani - 30 mins - + Last sync + Njëkohësimi i fundit - 1 hour - + Monday + E hënë - 24 hours - + Sunday + E diel - Sync Now - + 12-hour clock + Sahat 12-orësh - Last sync - + 24-hour clock + Sahat 24-orësh + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 min.) (%1 hour) - + (%1 orë) (%1 hours) - + (%1 orë) CTitleWidget Y - + V M - + M W - + J D - + D Search events and festivals - + Kërkoni në veprimtari dhe festivale CWeekWidget Sun - + Die Mon - + Hën Tue - + Mar Wed - + Mër Thu - + Enj Fri - + Pre Sat - + Sht CWeekWindow Week - + Javë Y - + V CYearScheduleView All Day - + Tërë Ditën No event - + S’ka veprimtari CYearWindow Y - + V CalendarWindow Calendar - + Kalendar Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Kalendari është një mjet për parje datash, si dhe një planifikues i përditshëm për të vënë në plan krejt gjërat e jetës së përditshme. Calendarmainwindow Calendar - + Kalendar Manage - + Administrojeni Privacy Policy - + Rregulla Privatësie Syncing... - + Po njëkohësohet… Sync successful - + Njëkohësim i suksesshëm Sync failed, please try later - + Njëkohësimi dështoi, ju lutemi, provoni më vonë CenterWidget All Day - + Tërë Ditën @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Përpunim Delete - + Fshije New event - + Veprimtari e re New Event - + Veprimtari e Re JobTypeListView You are deleting an event type. - + Po fshini një lloj veprimtarish. All events under this type will be deleted and cannot be recovered. - + Krejt veprimtaritë nën këtë lloj do të fshihen dhe s’mund të rikthehen. Cancel button - + Anuloje Delete button - + Fshije QObject Account settings - + Rregullime llogarie Account - + Llogari Select items to be synced - + Përzgjidhni objekte për t’u njëkohësuar Events - + Veprimtari General settings - + Rregullime të përgjithshme Sync interval - + Interval njëkohësimi Manage calendar - + Administroni kalendar Calendar account - + Llogari Kalendari Event types - + Lloje veprimtarish General - + Të përgjithshme First day of week - + Ditën e parë të javës Time - + Kohë @@ -836,7 +854,7 @@ Today Return - Sot + Sot @@ -844,86 +862,86 @@ Today Return Today - Sot + Sot ScheduleTypeEditDlg New event type - + Lloj i ri veprimtarie Edit event type - + Përpunoni lloj veprimtarie Name: - + Emër: Color: - + Ngjyrë: Cancel button - + Anuloje Save button - + Ruaje The name can not only contain whitespaces - + Emri s’mund të përmbajë vetëm hapësira të zbrazëta Enter a name please - + Ju lutemi, jepni një emër Shortcut Help - + Ndihmë Delete event - + Fshije veprimtarinë Copy - + Kopjoje Cut - + Prije Paste - + Ngjite Delete - + Fshije Select all - + Përzgjidhi krejt SidebarCalendarWidget Y - + Y M - + M @@ -931,7 +949,7 @@ Go button - + Jepi @@ -939,19 +957,19 @@ Sign In button - + Hyni Sign Out button - + Dilni YearFrame Y - + V @@ -959,7 +977,7 @@ Today Today - Sot + Sot - + \ No newline at end of file diff --git a/translations/dde-calendar-service_sr.ts b/translations/dde-calendar-service_sr.ts index 4c2ee215..95eb640a 100644 --- a/translations/dde-calendar-service_sr.ts +++ b/translations/dde-calendar-service_sr.ts @@ -35,121 +35,121 @@ CColorPickerWidget Color - + Боја Cancel button - + Откажи Save button - + Сачувај CDayMonthView Monday - + Понедељак Tuesday - + Уторак Wednesday - + Среда Thursday - + Четвртак Friday - + Петак Saturday - + Субота Sunday - + Недеља CDayWindow Y - + Г M - + М D - + Д Lunar - + Лунарно CGraphicsView New Event - + Нови догађај CMonthScheduleNumItem %1 more - + Још %1 CMonthView New event - + Нови догађај New Event - + Нови догађај CMonthWindow Y - + Г CMyScheduleView My Event - + Мој догађај OK button - + У реду Delete button - + Обриши Edit button - + Уреди @@ -163,60 +163,60 @@ CScheduleDlg New Event - + Нови догађај Edit Event - + Уреди догађај End time must be greater than start time - + Крајње време мора бити након почетног OK button - + У реду Never - + Никад At time of event - + У време догађаја 15 minutes before - + 15 минута раније 30 minutes before - + 30 минута раније 1 hour before - + 1 сат раније 1 day before - + 1 дан раније 2 days before - + 2 дана раније 1 week before - + 1 седмица раније On start day (9:00 AM) - + На дан почетка (9:00 АМ) time(s) - + пут(а) Enter a name please @@ -228,35 +228,35 @@ Type: - + Врста: Description: - + Опис: All Day: - + Цео дан: Starts: - + Почетак: Ends: - + Крај: Remind Me: - + Подсетник: Repeat: - + Понови: End Repeat: - + Окончај: Calendar account: @@ -268,15 +268,15 @@ Type - + Врста Description - + Опис All Day - + Цео дан Time: @@ -284,7 +284,7 @@ Time - + Време Solar @@ -292,146 +292,146 @@ Lunar - + Лунарно Starts - + Почетак Ends - + Крај Remind Me - + Подсетник Repeat - + Понови Daily - + Свакодневно Weekdays - + Радним данима Weekly - + Седмично Monthly - + Месечно Yearly - + Годишње End Repeat - + Окончај After - + Након On - + Укључ. Cancel button - + Откажи Save button - + Сачувај CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Све појаве понављајућег догађаја морају имати исти целодневни статус. Do you want to change all occurrences? - + Желите ли да промените све појаве? Cancel button - + Откажи Change All - + Промени све You are changing the repeating rule of this event. - + Мењате правило понављања овог догађаја. You are deleting an event. - + Бришете догађај. Are you sure you want to delete this event? - + Заиста желите да обришете овај догађај? Delete button - + Обриши Do you want to delete all occurrences of this event, or only the selected occurrence? - + Да ли желите да обришете све појаве овог догађаја или само изабрану ставку? Delete All - + Обриши све Delete Only This Event - + Обриши само овај догађај Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Желите ли да обришете ову и све будуће појаве овог догађаја или само изабрану ставку? Delete All Future Events - + Обриши све будуће догађаје You are changing a repeating event. - + Мењате понаљајући догађај. Do you want to change only this occurrence of the event, or all occurrences? - + Желите ли да промените само ову појаву догађаја или све? All - + Све Only This Event - + Само овај догађај Do you want to change only this occurrence of the event, or this and all future occurrences? - + Желите ли да промените ову појаву догађаја или ову појаву и све будуће појаве? All Future Events - + Сви будући догађаји You have selected a leap month, and will be reminded according to the rules of the lunar calendar. @@ -440,97 +440,125 @@ OK button - + У реду CScheduleSearchDateItem Y - + Г M - + М D - + Д CScheduleSearchItem Edit - + Уреди Delete - + Обриши All Day - + Цео дан CScheduleSearchView No search results - + Нема резултата претраге CScheduleView ALL DAY - + ЦЕО ДАН CSettingDialog - Sunday + import ICS file - Monday - + Manual + Ручно - 24-hour clock + 15 mins - 12-hour clock + 30 mins - Manual - + 1 hour + 1 сат - 15 mins + 24 hours - 30 mins + Sync Now - 1 hour + Last sync - 24 hours + Monday + Понедељак + + + Tuesday + Уторак + + + Wednesday + Среда + + + Thursday + Четвртак + + + Friday + Петак + + + Saturday + Субота + + + Sunday + Недеља + + + 12-hour clock - Sync Now + 24-hour clock - Last sync + Please go to the <a href='/'>Control Center</a> to change settings @@ -553,19 +581,19 @@ CTitleWidget Y - + Г M - + М W - + С D - + Д Search events and festivals @@ -576,78 +604,78 @@ CWeekWidget Sun - + Нед Mon - + Пон Tue - + уто Wed - + Сре Thu - + чет Fri - + Пет Sat - + Суб CWeekWindow Week - + Седмица Y - + Г CYearScheduleView All Day - + Цео дан No event - + Нема догађаја CYearWindow Y - + Г CalendarWindow Calendar - + Календар Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Календар је алат за приказ датума и паметани роковник за подсећање на све догађаје у животу. Calendarmainwindow Calendar - + Календар Manage @@ -655,11 +683,11 @@ Privacy Policy - + Политика приватности Syncing... - + Синхронизација... Sync successful @@ -674,7 +702,7 @@ CenterWidget All Day - + Цео дан @@ -744,23 +772,31 @@ DragInfoGraphicsView Edit - + Уреди Delete - + Обриши New event - + Нови догађај New Event - + Нови догађај JobTypeListView + + export + + + + import ICS file + + You are deleting an event type. @@ -772,12 +808,12 @@ Cancel button - + Откажи Delete button - + Обриши @@ -788,7 +824,7 @@ Account - + Налог Select items to be synced @@ -820,7 +856,7 @@ General - + Опште First day of week @@ -828,7 +864,7 @@ Time - + Време @@ -836,7 +872,7 @@ Today Return - Данас + Данас @@ -844,7 +880,7 @@ Today Return Today - Данас + Данас @@ -858,22 +894,30 @@ - Name: + Import ICS file + + Name: + Име: + Color: + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + Cancel button - + Откажи Save button - + Сачувај The name can not only contain whitespaces @@ -888,42 +932,42 @@ Shortcut Help - + Помоћ Delete event - + Обриши догађај Copy - + Копирај Cut - + Исеци Paste - + Убаци Delete - + Обриши Select all - + Изабери све SidebarCalendarWidget Y - + Г M - + М @@ -939,19 +983,19 @@ Sign In button - + Пријави се Sign Out button - + Одајави се YearFrame Y - + Г @@ -959,7 +1003,7 @@ Today Today - Данас + Данас diff --git a/translations/dde-calendar-service_tr.ts b/translations/dde-calendar-service_tr.ts index 65203720..478afe27 100644 --- a/translations/dde-calendar-service_tr.ts +++ b/translations/dde-calendar-service_tr.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Eşitleme başarılı Network error - + Ağ hatası Server exception - + Sunucu istisnası Storage full - + Hafıza dolu AccountManager Local account - + Yerel hesap Event types - + Etkinlik türleri CColorPickerWidget Color - + Renk Cancel button - + İptal Save button - + Kaydet CDayMonthView Monday - + Pazartesi Tuesday - + Salı Wednesday - + Çarşamba Thursday - + Perşembe Friday - + Cuma Saturday - + Cumartesi Sunday - + Pazar CDayWindow Y - + Y M - + A D - + G Lunar - + Ay CGraphicsView New Event - + Yeni Etkinlik CMonthScheduleNumItem %1 more - + %1 daha fazla CMonthView New event - + Yeni etkinlik New Event - + Yeni Etkinlik CMonthWindow Y - + Y CMyScheduleView My Event - + Etkinliğim OK button - + Tamam Delete button - + Sil Edit button - + Düzenle CPushButton New event type - + Yeni etkinlik türü CScheduleDlg New Event - + Yeni Etkinlik Edit Event - + Etkinliği Düzenle End time must be greater than start time - + Bitiş zamanı başlangıç ​​zamanından büyük olmalıdır OK button - + Tamam Never - + Asla At time of event - + Etkinlik anında 15 minutes before - + 15 dakika önce 30 minutes before - + 30 dakika önce 1 hour before - + 1 saat önce 1 day before - + 1 gün önce 2 days before - + 2 gün önce 1 week before - + 1 hafta önce On start day (9:00 AM) - + Başlangıç ​​gününde (09:00) time(s) - + zaman(lar) Enter a name please - + Lütfen bir ad girin The name can not only contain whitespaces - + Ad sadece boşluk karakterlerinden oluşamaz Type: - + Tür: Description: - + Açıklama: All Day: - + Tüm Gün: Starts: - + Başlangıç: Ends: - + Bitiş: Remind Me: - + Hatırlat: Repeat: - + Tekrar: End Repeat: - + Tekrar Sonu: Calendar account: - + Takvim hesabı: Calendar account - + Takvim hesabı Type - + Tür Description - + Açıklama All Day - + Tüm Gün Time: - + Zaman: Time - + Zaman Solar - + Güneş Lunar - + Ay Starts - + Başlangıç Ends - + Bitiş Remind Me - + Hatırlat Repeat - + Tekrar Daily - + Günlük Weekdays - + Hafta içi Weekly - + Haftalık Monthly - + Aylık Yearly - + Yıllık End Repeat - + Tekrar Sonu After - + Sonra On - + Açık Cancel button - + İptal Save button - + Kaydet CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + Tekrarlanan bir etkinliğin tüm tekrarlamaları, tüm gün boyunca aynı duruma sahip olmalıdır. Do you want to change all occurrences? - + Tüm tekrarlamaları değiştirmek ister misiniz? Cancel button - + İptal Change All - + Tümünü Değiştir You are changing the repeating rule of this event. - + Bu etkinliğin tekrarlama kuralını değiştiriyorsunuz. You are deleting an event. - + Bir etkinliği siliyorsunuz. Are you sure you want to delete this event? - + Bu etkinliği silmek istediğinizden emin misiniz? Delete button - + Sil Do you want to delete all occurrences of this event, or only the selected occurrence? - + Bu olayın tüm tekrarlarını mı yoksa yalnızca seçilen olayı mı silmek istiyorsun? Delete All - + Tümünü Sil Delete Only This Event - + Yalnızca Bu Etkinliği Sil Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Bunu ve bu olayın gelecekteki tüm tekrarlarını mı yoksa yalnızca seçilen olayı mı silmek istiyorsunuz? Delete All Future Events - + Gelecekteki Tüm Etkinlikleri Sil You are changing a repeating event. - + Tekrarlanan bir etkinliği değiştiriyorsunuz. Do you want to change only this occurrence of the event, or all occurrences? - + Etkinliğin yalnızca bu tekrarlamasını mı yoksa tüm tekrarlamalarını mı değiştirmek istiyorsunuz? All - + Tümü Only This Event - + Sadece Bu Etkinlik Do you want to change only this occurrence of the event, or this and all future occurrences? - + Yalnızca etkinliğin bu etkinliğini mi, yoksa bunu ve gelecekteki tüm etkinlikleri değiştirmek istiyorsunuz? All Future Events - + Gelecekteki Tüm Etkinlikler You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Artık bir ay seçtiniz ve ay takvimi kurallarına göre hatırlatılacak. OK button - + Tamam CScheduleSearchDateItem Y - + Y M - + A D - + G CScheduleSearchItem Edit - + Düzenle Delete - + Sil All Day - + Tüm Gün CScheduleSearchView No search results - + Arama sonucu bulunamadı CScheduleView ALL DAY - + TÜM GÜN CSettingDialog - Sunday - + Manual + Manuel - Monday - + 15 mins + 15 Dakika - 24-hour clock - + 30 mins + 30 Dakika - 12-hour clock - + 1 hour + 1 Saat - Manual - + 24 hours + 24 Saat - 15 mins - + Sync Now + Şimdi senkronize et - 30 mins - + Last sync + Son senkronizasyon - 1 hour - + Monday + Pazartesi - 24 hours - + Sunday + Pazar - Sync Now - + 12-hour clock + 12 saatlik zaman - Last sync - + 24-hour clock + 24 saatlik zaman + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 dakika) (%1 hour) - + (%1 saat) (%1 hours) - + (%1 saat) CTitleWidget Y - + Y M - + A W - + H D - + G Search events and festivals - + Etkinlikleri ve bayramları ara CWeekWidget Sun - + Pazar Mon - + Pazartesi Tue - + Salı Wed - + Çarşamba Thu - + Perşembe Fri - + Cuma Sat - + Cumartesi CWeekWindow Week - + Hafta Y - + Y CYearScheduleView All Day - + Tüm Gün No event - + Etkinlik yok CYearWindow Y - + Y CalendarWindow Calendar - + Takvim Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Takvim tarihleri ​​görüntülemek için bir araçtır ve aynı zamanda hayattaki her şeyi planlamak için akıllı bir günlük planlayıcısıdır. Calendarmainwindow Calendar - + Takvim Manage - + Yönet Privacy Policy - + Gizlilik Politikası Syncing... - + Eşitleniyor... Sync successful - + Senkronizasyon başarılı Sync failed, please try later - + Eşitleme başarısız, lütfen daha sonra deneyin CenterWidget All Day - + Tüm Gün @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Düzenle Delete - + Sil New event - + Yeni etkinlik New Event - + Yeni Etkinlik JobTypeListView You are deleting an event type. - + Bir etkinlik türünü siliyorsunuz. All events under this type will be deleted and cannot be recovered. - + Bu türün altındaki etkinlikler silinir ve geri getirilemez. Cancel button - + İptal Delete button - + Sil QObject Account settings - + Hesap ayarları Account - + Hesap Select items to be synced - + Senkronize edilecek öğeyi seçin Events - + Etkinlikler General settings - + Genel ayarlar Sync interval - + Senkronizasyon aralığı Manage calendar - + Takvimi yönet Calendar account - + Takvim hesabı Event types - + Etkinlik türleri General - + Genel First day of week - + Haftanın ilk günü Time - + Zaman @@ -836,7 +854,7 @@ Today Return - Bugün + Bugün @@ -844,86 +862,86 @@ Today Return Today - Bugün + Bugün ScheduleTypeEditDlg New event type - + Yeni etkinlik türü Edit event type - + Etkinlik türünü düzenle Name: - + Ad: Color: - + Renk: Cancel button - + İptal Save button - + Kaydet The name can not only contain whitespaces - + Ad sadece boşluk karakterlerinden oluşamaz Enter a name please - + Lütfen bir ad girin Shortcut Help - + Yardım Delete event - + Etkinliği sil Copy - + Kopyala Cut - + Kes Paste - + Yapıştır Delete - + Sil Select all - + Tümünü seç SidebarCalendarWidget Y - + Y M - + A @@ -931,7 +949,7 @@ Go button - + Git @@ -939,19 +957,19 @@ Sign In button - + Giriş Sign Out button - + Çıkış YearFrame Y - + Y @@ -959,7 +977,7 @@ Today Today - Bugün + Bugün - + \ No newline at end of file diff --git a/translations/dde-calendar-service_ug.ts b/translations/dde-calendar-service_ug.ts index d8960be5..124818e1 100644 --- a/translations/dde-calendar-service_ug.ts +++ b/translations/dde-calendar-service_ug.ts @@ -5,532 +5,560 @@ AccountItem Sync successful - + ماس قەدەملەندى Network error - + تور خاتالىقى Server exception - + مۇلازىمىتېر نورمالسىز Storage full - + بوشلۇق توشۇپ كەتتى AccountManager Local account - + يەرلىك ھېسابات Event types - + كۈنتەرتىپ تۈرى CColorPickerWidget Color - + رەڭ Cancel button - + بىكار قىلىش Save button - + ساقلاش CDayMonthView Monday - + دۈشەنبە Tuesday - + سەيشەنبە Wednesday - + چارشەنبە Thursday - + پەيشەنبە Friday - + جۈمە Saturday - + شەنبە Sunday - + يەكشەنبە CDayWindow Y - + يىلى M - + ئاي D - + كۈنى Lunar - + دېھقانلار كالېندارى CGraphicsView New Event - + يېڭى كۈنتەرتىپ قۇرۇش CMonthScheduleNumItem %1 more - + يەنە %1 تۈر بار CMonthView New event - + كۈنتەرتىپ قۇرۇش New Event - + يېڭى كۈنتەرتىپ قۇرۇش CMonthWindow Y - + يىلى CMyScheduleView My Event - + كۈنتەرتىپىم OK button - + تامام Delete button - + ئۆچۈرۈش Edit button - + تەھرىرلەش CPushButton New event type - + كۈنتەرتىپ تۈرى قوشۇش CScheduleDlg New Event - + كۈنتەرتىپ قۇرۇش Edit Event - + كۈنتەرتىپنى تەھرىرلەش End time must be greater than start time - + ئاخىرلىشىش ۋاقتى باشلىنىش ۋاقتىدىن كېيىن بولۇشى كېرەك OK button - + تامام Never - + ھەرگىز At time of event - + كۈتەرتىپ باشلانغاندا 15 minutes before - + 15 مىنۇت بۇرۇن 30 minutes before - + 30 مىنۇت بۇرۇن 1 hour before - + 1 سائەت بۇرۇن 1 day before - + 1 كۈن بۇرۇن 2 days before - + 2 كۈن بۇرۇن 1 week before - + 1 ھەپتە بۇرۇن On start day (9:00 AM) - + كۈنتەرتىپ باشلانغان كۈن (چۈشتىن بۇرۇن 9 دا) time(s) - + ۋاقىت Enter a name please - + نام قۇرۇق قالمىسۇن The name can not only contain whitespaces - + نامنىڭ ھەممىسى بوشلۇق بولسا بولمايدۇ، ئۆزگەرتىڭ Type: - + تۈرى: Description: - + مەزمۇنى: All Day: - + پۈتۈن كۈن: Starts: - + باشلىنىدىغان ۋاقىت: Ends: - + ئاخىرلىشىدىغان ۋاقىت: Remind Me: - + ئەسكەرتىش: Repeat: - + قايتىلاش: End Repeat: - + قايتىلاشنى ئاخىرلاشتۇرۇش: Calendar account: - + كالېندار ھېساباتى: Calendar account - + كالېندار ھېساباتى: Type - + تۈر Description - + مەزمۇن All Day - + پۈتۈن كۈن Time: - + ۋاقىت: Time - + ۋاقىت Solar - + مىلادىيە كالېندارى Lunar - + دېھقانلار كالېندارى Starts - + باشلىنىدىغان ۋاقىت Ends - + ئاخىرلىشىدىغان ۋاقىت Remind Me - + ئەسكەرتىش Repeat - + قايتىلاش Daily - + ھەر كۈنى Weekdays - + خىزمەت كۈنى Weekly - + ھەر ھەپتە Monthly - + ھەر ئاي Yearly - + ھەر يىلى End Repeat - + قايتىلاشنى ئاخىرلاشتۇرۇش After - + دىن On - + غىچە ۋاقىت Cancel button - + بىكار قىلىش Save button - + ساقلاش CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + تەكرارلانغان كۈنتەرتىپتىكى بارلىق تەكرارلىنىش چوقۇم پۈتۈن كۈنلۈك ھالەتتە بولۇشى كېرەك. Do you want to change all occurrences? - + بارلىق تەكرارلاشلارنى ئۆزگەرتمەكچىمۇ؟ Cancel button - + بىكار قىلىش Change All - + ھەممىنى ئۆزگەرتىش You are changing the repeating rule of this event. - + كۈنتەرتىپنىڭ تەكرارلىنىش قائىدىسىنى ئۆزگەرتىۋاتىسىز. You are deleting an event. - + كۈنتەرتىپنى ئۆچۈرۈۋاتىسىز. Are you sure you want to delete this event? - + بۇ كۈنتەرتىپنى ئۆچۈرمەكچىمۇ؟ Delete button - + ئۆچۈرۈش Do you want to delete all occurrences of this event, or only the selected occurrence? - + بۇ كۈنتەرتىپتىكى بارلىق تەكرارلىنىشىنى ئۆچۈرەمسىز ياكى پەقەت تاللانغان تەكرارلاشلارنىلا ئۆچۈرەمسىز؟ Delete All - + ھەممىنى ئۆچۈرۈش Delete Only This Event - + مۇشۇنىلا ئۆچۈرۈرش Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + بۇ كۈنتەرتىپتىكى تەكرارلانغان ۋە كەلگۈسىدە تەكرارلىنىدىغانلىرى ئۆچۈرەمسىز ياكى تاللانغان تەكرارلاشنىلا ئۆچۈرەمسىز؟ Delete All Future Events - + بارلىق كۈنتەرتىپنى ئۆچۈرۈش You are changing a repeating event. - + قايتىلىنىدىغان كۈنتەرتىپنى ئۆزگەرتىۋاتىسىز. Do you want to change only this occurrence of the event, or all occurrences? - + بۇ كۈنتەرتىپتىكى بارلىق تەكرارلىنىشىنى ئۆزگەرتەمسىز ياكى پەقەت تاللانغان تەكرارلاشلارنىلا ئۆزگەرتەمسىز؟ All - + ھەممىنى Only This Event - + تاللانغىنىنى Do you want to change only this occurrence of the event, or this and all future occurrences? - + بۇ كۈنتەرتىپتىكى تەكرارلانغان ۋە كەلگۈسىدە تەكرارلىنىدىغانلىرى ئۆزگەرتەمسىز ياكى تاللانغان تەكرارلاشنىلا ئۆزگەرتەمسىز؟ All Future Events - + بارلىق كۈنتەرتىپلەر You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + تاللىغىنىڭىز كەبىسە ئېيى، دېھقانلار كالېندارى بويىچە ئەسكەرتىدۇ OK button - + جەزىملەشتۈرۈش CScheduleSearchDateItem Y - + يىل M - + ئاي D - + كۈن CScheduleSearchItem Edit - + تەھرىرلەش Delete - + ئۆچۈرۈش All Day - + پۈتۈن كۈن CScheduleSearchView No search results - + ئىزدەش نەتىجىسى تىپىلمىدى CScheduleView ALL DAY - + پۈتۈن كۈن CSettingDialog - Sunday - - - - Monday - - - - 24-hour clock - - - - 12-hour clock + import ICS file Manual - + قولدا 15 mins - + ھەر 15 مىنۇتتا 30 mins - + ھەر 30 مىنۇتتا 1 hour - + ھەر 1 سائەتتە 24 hours - + ھەر 24 سائەتتە Sync Now - + ماس قەدەملەش Last sync + يېقىنقى ماس قەدەملىگەن ۋاقىت + + + Monday + دۈشەنبە + + + Tuesday + سەيشەنبە + + + Wednesday + چارشەنبە + + + Thursday + پەيشەنبە + + + Friday + جۈمە + + + Saturday + شەنبە + + + Sunday + يەكشەنبە + + + 12-hour clock + 12 سائەتلىك + + + 24-hour clock + 24 سائەتلىك + + + Please go to the <a href='/'>Control Center</a> to change settings @@ -538,143 +566,143 @@ CTimeEdit (%1 mins) - + (%1 مىنۇت) (%1 hour) - + (%1 سائەت) (%1 hours) - + (%1 سائەت) CTitleWidget Y - + يىل M - + ئاي W - + ھەپتە D - + كۈن Search events and festivals - + كۈنتەرتىپ/بايرام ئىزدەش CWeekWidget Sun - + كۈن Mon - + دۈشەنبە Tue - + سەيشەنبە Wed - + چارشەنبە Thu - + پەيشەنبە Fri - + جۈمە Sat - + شەنبە CWeekWindow Week - + ھەپتە Y - + يىلى CYearScheduleView All Day - + پۈتۈن كۈن No event - + كۈنتەرتىپ يوق CYearWindow Y - + يىلى CalendarWindow Calendar - + كالېندار Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + كالېندار چېسلا كۆرۈش، كۈنتەرتىپ باشقۇرۇشتا ئىشلىتىلىدىغان كىچىك قورال. Calendarmainwindow Calendar - + كالېندار Manage - + باشقۇرۇش Privacy Policy - + شەخسىيەت سىياسىتى Syncing... - + ماس قەدەملەۋاتىدۇ... Sync successful - + ماس قەدەملەندى Sync failed, please try later - + ماس قەدەملەنمىدى، قايتا سىناڭ CenterWidget All Day - + پۈتۈن كۈن @@ -713,15 +741,15 @@ 15 mins later - + 15 مىنۇتتىن كېيىن 1 hour later - + 1 سائەتىن كېيىن 4 hours later - + 4 سائەتىن كېيىن Tomorrow @@ -744,91 +772,99 @@ DragInfoGraphicsView Edit - + تەھرىرلەش Delete - + ئۆچۈرۈش New event - + يېڭى كۈنتەرتىپ قۇرۇش New Event - + كۈنتەرتىپ قۇرۇش JobTypeListView - You are deleting an event type. + export - All events under this type will be deleted and cannot be recovered. + import ICS file + + You are deleting an event type. + كۈنتەرت تۈرىنى ئۆچۈرۈۋاتىسىز. + + + All events under this type will be deleted and cannot be recovered. + بۇ كۈنتەرتىپ تۈرى ئاستىدىكى بارلىق كۈنتەرتىپ ئۆچۈرۈلىدۇ ھەمدە ئەسلىگە كەلتۈرگىلى بولمايدۇ + Cancel button - + بىكار قىلىش Delete button - + ئۆچۈرۈش QObject Account settings - + ھېسابات تەڭشىكى Account - + ھېسابات Select items to be synced - + ماس قەدەملەيدىغان تۈرلەرنى تەڭشەڭ Events - + كۈنتەرتىپ General settings - + ئادەتتىكى تەڭشەكلەر Sync interval - + ماس قەدەملەش چاستوتىسى Manage calendar - + كالېندار باشقۇرۇش Calendar account - + كالېندار ھېساباتى: Event types - + كالېندار تۈرى General - + ئۇنىۋېرسال First day of week - + ھەپتە قايسى كۈندىن باشلانسۇن Time - + ۋاقىت @@ -836,7 +872,7 @@ Today Return - Today + بۈگۈنگە قايتىش @@ -844,86 +880,94 @@ Today Return Today - Today + بۈگۈنگە قايتىش ScheduleTypeEditDlg New event type - + كۈنتەرتىپ تۈرى قوشۇش Edit event type + كۈنتەرتىپ تۈرىنى تەھرىرلەش + + + Import ICS file Name: - + نامى: Color: + رەڭ: + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: Cancel button - + بىكار قىلىش Save button - + ساقلاش The name can not only contain whitespaces - + نامنىڭ ھەممىسى بوشلۇق بولسا بولمايدۇ، ئۆزگەرتىڭ Enter a name please - + نام قۇرۇق قالمىسۇن Shortcut Help - + ياردەم Delete event - + كۈنتەرتىپنى ئۆچۈرۈش Copy - + كۆچۈرۈش Cut - + كېسىش Paste - + چاپلاش Delete - + ئۆچۈرۈش Select all - + ھەممىنى تاللاش SidebarCalendarWidget Y - + يىلى M - + ئاي @@ -931,7 +975,7 @@ Go button - + ئاتلاش @@ -939,19 +983,19 @@ Sign In button - + كىرىش Sign Out button - + چېكىنىش YearFrame Y - + يىلى @@ -959,7 +1003,7 @@ Today Today - Today + بۈگۈن diff --git a/translations/dde-calendar-service_uk.ts b/translations/dde-calendar-service_uk.ts index 4fa8b216..65acf90b 100644 --- a/translations/dde-calendar-service_uk.ts +++ b/translations/dde-calendar-service_uk.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + Успішна синхронізація Network error - + Помилка мережі Server exception - + Виключення сервера Storage full - + Переповнено сховище даних AccountManager Local account - + Локальний обліковий запис Event types - + Типи подій CColorPickerWidget Color - + Колір Cancel button - + Скасувати Save button - + Зберегти CDayMonthView Monday - + Понеділок Tuesday - + Вівторок Wednesday - + Середа Thursday - + Четвер Friday - + П'ятниця Saturday - + Субота Sunday - + Неділя CDayWindow Y - + Р M - + М D - + Д Lunar - + Місячний CGraphicsView New Event - + Нова подія CMonthScheduleNumItem %1 more - + і ще %1 CMonthView New event - + Нова подія New Event - + Нова подія CMonthWindow Y - + Р CMyScheduleView My Event - + Моя подія OK button - + Гаразд Delete button - + Вилучити Edit button - + Змінити CPushButton New event type - + Новий тип події CScheduleDlg New Event - + Нова подія Edit Event - + Редагування події End time must be greater than start time - + Кінцевий час не повинен передувати початковому часу OK button - + Гаразд Never - + Ніколи At time of event - + У момент події 15 minutes before - + За 15 хвилин до події 30 minutes before - + За 30 хвилин до події 1 hour before - + За годину до події 1 day before - + За день до події 2 days before - + За 2 дні до події 1 week before - + За тиждень до події On start day (9:00 AM) - + У день початку (9:00) time(s) - + раз(ів) Enter a name please - + Будь ласка, введіть назву The name can not only contain whitespaces - + Назва не може складатися лише з пробілів Type: - + Тип: Description: - + Опис: All Day: - + Весь день: Starts: - + Починається: Ends: - + Завершується: Remind Me: - + Нагадати мені: Repeat: - + Повторення: End Repeat: - + Завершити повтори: Calendar account: - + Обліковий запис календаря: Calendar account - + Обліковий запис календаря Type - + Тип Description - + Опис All Day - + Весь день Time: - + Час: Time - + Час Solar - + Сонячний Lunar - + Місячний Starts - + Починається Ends - + Кінці Remind Me - + Нагадати мені Repeat - + Повторення Daily - + Щодня Weekdays - + Дні тижня Weekly - + Щотижня Monthly - + Щомісяця Yearly - + Щорічно End Repeat - + Завершити повтори After - + Після On - + У Cancel button - + Скасувати Save button - + Зберегти CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + В усіх повторень події має бути однаковий стан щодо заповнення подією усього дня. Do you want to change all occurrences? - + Хочете змінити усі повторення? Cancel button - + Скасувати Change All - + Змінити усі You are changing the repeating rule of this event. - + Ви змінюєте правило повторення цієї події. You are deleting an event. - + Ви вилучаєте запис події. Are you sure you want to delete this event? - + Ви впевнені, що бажаєте вилучити цей запис події? Delete button - + Вилучити Do you want to delete all occurrences of this event, or only the selected occurrence? - + Ви хочете вилучити усі повторення цієї події чи лише позначений запис? Delete All - + Вилучити всі Delete Only This Event - + Вилучити лише цей запис Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Ви хочете вилучити усі майбутні повторення цієї події чи лише позначені записи? Delete All Future Events - + Вилучити усі майбутні повторення You are changing a repeating event. - + Ви вносите зміни до повторюваної події. Do you want to change only this occurrence of the event, or all occurrences? - + Хочете змінити лише це повторення події чи усі повторення? All - + Усі Only This Event - + Лише цей запис Do you want to change only this occurrence of the event, or this and all future occurrences? - + Хочете змінити лише це повторення події чи усі майбутні повторення? All Future Events - + Усі майбутні повторення You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Вами вибрано високосний місяць. Вас буде попереджено відповідно до правил місячного календаря. OK button - + Гаразд CScheduleSearchDateItem Y - + Р M - + М D - + Д CScheduleSearchItem Edit - + Змінити Delete - + Вилучити All Day - + Весь день CScheduleSearchView No search results - + Нічого не знайдено CScheduleView ALL DAY - + УВЕСЬ ДЕНЬ CSettingDialog - Sunday - + Manual + Вручну - Monday - + 15 mins + 15 хвилин - 24-hour clock - + 30 mins + 30 хвилин - 12-hour clock - + 1 hour + 1 година - Manual - + 24 hours + 24 години - 15 mins - + Sync Now + Синхронізувати зараз - 30 mins - + Last sync + Остання синхронізація - 1 hour - + Monday + Понеділок - 24 hours - + Sunday + Неділя - Sync Now - + 12-hour clock + 12-годинний формат часу - Last sync - + 24-hour clock + 24-годинний формат часу + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1 хв.) (%1 hour) - + (%1 год.) (%1 hours) - + (%1 год.) CTitleWidget Y - + Р M - + М W - + Т D - + Д Search events and festivals - + Шукати події та свята CWeekWidget Sun - + Нд Mon - + Пн Tue - + Вт Wed - + Ср Thu - + Чт Fri - + Пт Sat - + Сб CWeekWindow Week - + Тиждень Y - + Р CYearScheduleView All Day - + Весь день No event - + Немає події CYearWindow Y - + Р CalendarWindow Calendar - + Календар Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + «Календар» — інструмент для перегляду календаря дат, також чудовий планувальник для створення розкладів на кожен день. Calendarmainwindow Calendar - + Календар Manage - + Керувати Privacy Policy - + Правила конфіденційності Syncing... - + Синхронізація... Sync successful - + Успішна синхронізація Sync failed, please try later - + Помилка синхронізації. Будь ласка, повторіть спробу пізніше CenterWidget All Day - + Весь день @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + Редагувати Delete - + Видалити New event - + Нова подія New Event - + Нова подія JobTypeListView You are deleting an event type. - + Ви вилучаєте тип події. All events under this type will be deleted and cannot be recovered. - + Усі події цього типу буде вилучено, їх не можна буде відновити. Cancel button - + Скасувати Delete button - + Вилучити QObject Account settings - + Параметри облікового запису Account - + Обліковий запис Select items to be synced - + Виберіть записи для синхронізації Events - + Події General settings - + Загальні параметри Sync interval - + Інтервал синхронізації Manage calendar - + Керувати календарем Calendar account - + Обліковий запис календаря Event types - + Типи подій General - + Загальне First day of week - + Перший день тижня Time - + Час @@ -836,7 +854,7 @@ Today Return - Сьогодні + Сьогодні @@ -844,86 +862,86 @@ Today Return Today - Сьогодні + Сьогодні ScheduleTypeEditDlg New event type - + Новий тип події Edit event type - + Редагувати тип події Name: - + Назва: Color: - + Колір: Cancel button - + Скасувати Save button - + Зберегти The name can not only contain whitespaces - + Назва не може складатися лише з пробілів Enter a name please - + Будь ласка, введіть назву Shortcut Help - + Допомога Delete event - + Вилучити подію Copy - + Копіювати Cut - + Вирізати Paste - + Вставити Delete - + Вилучити Select all - + Вибрати все SidebarCalendarWidget Y - + Р M - + М @@ -931,7 +949,7 @@ Go button - + Перейти @@ -939,19 +957,19 @@ Sign In button - + Увійти Sign Out button - + Вийти YearFrame Y - + Р @@ -959,7 +977,7 @@ Today Today - Сьогодні + Сьогодні - + \ No newline at end of file diff --git a/translations/dde-calendar-service_vi.ts b/translations/dde-calendar-service_vi.ts index a4d75a4f..20b1d4dd 100644 --- a/translations/dde-calendar-service_vi.ts +++ b/translations/dde-calendar-service_vi.ts @@ -4,22 +4,18 @@ AccountItem - Sync successful - Network error - Server exception - Storage full @@ -27,12 +23,10 @@ AccountManager - Local account - Event types @@ -40,80 +34,66 @@ CColorPickerWidget - Color - Cancel button - + Hủy - Save button - + Lưu CDayMonthView - Monday - + Thứ hai - Tuesday - + Thứ ba - Wednesday - + Thứ tư - Thursday - + Thứ năm - Friday - + Thứ sáu - Saturday - + Thứ bảy - Sunday - + Chủ nhật CDayWindow - Y - + Y - M - + M - D - + D - Lunar @@ -121,70 +101,60 @@ CGraphicsView - New Event - + Sự kiện mới CMonthScheduleNumItem - %1 more - + thêm %1 CMonthView - New event - + Sự kiện mới - New Event - + Sự kiện mới CMonthWindow - Y - + Y CMyScheduleView - My Event - + Sự kiện của Tôi - OK button - + OK - Delete button - + Xóa - Edit button - + Chỉnh sửa CPushButton - New event type @@ -192,520 +162,417 @@ CScheduleDlg - - - New Event - + Sự kiện mới - Edit Event - + Chỉnh sửa Sự kiện - End time must be greater than start time - + Thời gian kết thúc phải lớn hơn thời gian bắt đầu - OK button - + OK - - - - - - Never - + Không bao giờ - At time of event - + Vào thời điểm sự kiện - 15 minutes before - + trước 15 phút - 30 minutes before - + trước 30 phút - 1 hour before - + 1 giờ trước - - 1 day before - + 1 ngày trước - - 2 days before - + 2 ngày trước - - 1 week before - + 1 tuần trước - On start day (9:00 AM) - + Bắt đầu lúc (9:00 AM) - - - - time(s) - + thời gian(s) - Enter a name please - The name can not only contain whitespaces - - Type: - + Loại: - - Description: - + Mô tả: - - All Day: - + Tất cả các ngày: - - Starts: - + Bắt đầu: - - Ends: - + Kết thúc: - - Remind Me: - + Nhắc nhở tôi: - - Repeat: - + Lặp lại: - - End Repeat: - + Kết thúc lặp lại: - Calendar account: - Calendar account - Type - + Loại - Description - + Mô tả - All Day - + Tất cả các ngày - Time: - Time - Solar - Lunar - Starts - + Bắt đầu - Ends - + Kết thúc - Remind Me - + Nhắc nhở tôi - Repeat - + Lặp lại - - Daily - + Hằng ngày - - Weekdays - + Các ngày trong tuần - - Weekly - + Hàng tuần - - - Monthly - + Hàng tháng - - - Yearly - + Hàng năm - End Repeat - + Kết thúc lặp lại - After - + Sau - On - + Mở - Cancel button - + Hủy - Save button - + Lưu CScheduleOperation - All occurrences of a repeating event must have the same all-day status. - + Tất cả các lần xuất hiện của một sự kiện lặp lại phải có cùng trạng thái ngày. - - Do you want to change all occurrences? - + Bạn có muốn thay đổi tất cả các lần xuất hiện? - - - - - - - Cancel button - + Hủy - - Change All - + Thay đổi tất cả - You are changing the repeating rule of this event. - + Bạn đang thay đổi quy tắc lặp lại của sự kiện này. - - - You are deleting an event. - + Bạn đã xóa một sự kiện - Are you sure you want to delete this event? - + Bạn có muốn xóa sự kiện này không - Delete button - + Xóa - Do you want to delete all occurrences of this event, or only the selected occurrence? - + Bạn có muốn xóa tất cả các lần xuất hiện của sự kiện này hay chỉ xảy ra sự kiện đã chọn? - Delete All - + Xóa tất cả - - Delete Only This Event - + Chỉ xóa sự kiện này - Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Bạn có muốn xóa sự kiện này và tất cả các lần xuất hiện trong tương lai của sự kiện này hay chỉ xảy ra sự kiện đã chọn? - Delete All Future Events - + Xóa tất cả các sự kiện trong tương lai - - You are changing a repeating event. - + Bạn đang thay đổi một sự kiện lặp lại. - Do you want to change only this occurrence of the event, or all occurrences? - + Bạn có muốn chỉ thay đổi sự xuất hiện của sự kiện này hay tất cả các sự kiện? - All - + Tất cả - - Only This Event - + Chỉ sự kiện này - Do you want to change only this occurrence of the event, or this and all future occurrences? - + Bạn có muốn chỉ thay đổi sự xuất hiện của sự kiện này, hoặc tất cả các lần xuất hiện trong tương lai? - All Future Events - + Tất cả các sự kiện trong tương lai - You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - OK button - + OK CScheduleSearchDateItem - Y - + Y - M - + M - D - + D CScheduleSearchItem - Edit - + Chỉnh sửa - Delete - + Xóa - All Day - + Tất cả các ngày CScheduleSearchView - No search results - + Không có kết quả tìm kiếm nào CScheduleView - ALL DAY - + Tất cả các ngày CSettingDialog - - Sunday + import ICS file - - Monday - + Manual + Tự chỉnh - - 24-hour clock + 15 mins - - 12-hour clock + 30 mins - - Manual + 1 hour - - 15 mins + 24 hours - - 30 mins + Sync Now - - 1 hour + Last sync - - 24 hours + Monday + Thứ hai + + + Tuesday + Thứ ba + + + Wednesday + Thứ tư + + + Thursday + Thứ năm + + + Friday + Thứ sáu + + + Saturday + Thứ bảy + + + Sunday + Chủ nhật + + + 12-hour clock - - Sync Now + 24-hour clock - - Last sync + Please go to the <a href='/'>Control Center</a> to change settings CTimeEdit - (%1 mins) - (%1 hour) - (%1 hours) @@ -713,28 +580,22 @@ CTitleWidget - Y - + Y - M - + M - W - + W - D - + D - - Search events and festivals @@ -742,37 +603,30 @@ CWeekWidget - Sun - Mon - Tue - Wed - Thu - Fri - Sat @@ -780,80 +634,66 @@ CWeekWindow - Week - + Tuần - Y - + Y CYearScheduleView - - All Day - + Tất cả các ngày - No event - + Không có sự kiện nào CYearWindow - Y - + Y CalendarWindow - Calendar - + Lịch - Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + Lịch là một công cụ để xem ngày, và cũng là công cụ sắp xếp kế hoạch, sự kiện hàng ngày thông minh. Calendarmainwindow - Calendar - + Lịch - Manage - Privacy Policy - + Chính sách bảo mật - Syncing... - + Đồng bộ hóa... - Sync successful - Sync failed, please try later @@ -861,205 +701,168 @@ CenterWidget - All Day - + Tất cả các ngày DAccountDataBase - Work - + Công việc - Life - + Cuộc sống - Other - + Khác DAlarmManager - - - - Close button - Đóng lại + Đóng lại - One day before start - Một ngày trước khi bắt đầu + Một ngày trước khi bắt đầu - Remind me tomorrow - Nhắc tôi ngày mai + Nhắc tôi ngày mai - Remind me later - Nhắc tôi sau + Nhắc tôi sau - 15 mins later - 1 hour later - 4 hours later - - - Tomorrow - Ngày mai + Ngày mai - Schedule Reminder - Lịch trình nhắc nhở + Lịch trình nhắc nhở - - %1 to %2 - - Today - Hôm nay + Hôm nay DragInfoGraphicsView - Edit - + Chỉnh sửa - Delete - + Xóa - New event - + Sự kiện mới - New Event - + Sự kiện mới JobTypeListView - + export + + + + import ICS file + + + You are deleting an event type. - All events under this type will be deleted and cannot be recovered. - Cancel button - + Hủy - Delete button - + Xóa QObject - Account settings - Account - + Tài khoản - Select items to be synced - Events - - General settings - Sync interval - - Manage calendar - Calendar account - - Event types - General - + Tổng quát - First day of week - Time @@ -1067,64 +870,60 @@ Return - Today Return - Hôm nay + Hôm nay Return Today - - - Today Return Today - Hôm nay + Hôm nay ScheduleTypeEditDlg - New event type - Edit event type - - Name: + Import ICS file - + Name: + Tên: + + Color: - + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + Cancel button - + Hủy - Save button - + Lưu - The name can not only contain whitespaces - Enter a name please @@ -1132,58 +931,48 @@ Shortcut - Help - + Giúp đỡ - Delete event - + Xóa sự kiện - Copy - + Sao chép - Cut - + Cắt - Paste - + Dán - Delete - + Xóa - Select all - + Chọn tất cả SidebarCalendarWidget - Y - + Y - M - + M TimeJumpDialog - Go button @@ -1192,40 +981,29 @@ UserloginWidget - Sign In button - + Đăng nhập - Sign Out button - + Đăng xuất YearFrame - Y - + Y today - - - - - - - - Today Today - Hôm nay + Hôm nay diff --git a/translations/dde-calendar-service_zh_CN.ts b/translations/dde-calendar-service_zh_CN.ts index 7900d257..28cc3315 100644 --- a/translations/dde-calendar-service_zh_CN.ts +++ b/translations/dde-calendar-service_zh_CN.ts @@ -1,680 +1,698 @@ - - - + AccountItem Sync successful - + 同步成功 Network error - + 网络异常 Server exception - + 服务器异常 Storage full - + 存储已满 AccountManager Local account - + 本地帐户 Event types - + 日程类型 CColorPickerWidget Color - + 颜色 Cancel button - + 取 消 Save button - + 保 存 CDayMonthView Monday - + 星期一 Tuesday - + 星期二 Wednesday - + 星期三 Thursday - + 星期四 Friday - + 星期五 Saturday - + 星期六 Sunday - + 星期日 CDayWindow Y - + M - + D - + Lunar - + 农历 CGraphicsView New Event - + 新建日程 CMonthScheduleNumItem %1 more - + 还有%1项 CMonthView New event - + 新建日程 New Event - + 新建日程 CMonthWindow Y - + CMyScheduleView My Event - + 我的日程 OK button - + 确 定 Delete button - + 删 除 Edit button - + 编 辑 CPushButton New event type - + 新增日程类型 CScheduleDlg New Event - + 新建日程 Edit Event - + 编辑日程 End time must be greater than start time - + 结束时间需晚于开始时间 OK button - + 确 定 Never - + 从不 At time of event - + 日程开始时 15 minutes before - + 15分钟前 30 minutes before - + 30分钟前 1 hour before - + 1小时前 1 day before - + 1天前 2 days before - + 2天前 1 week before - + 1周前 On start day (9:00 AM) - + 日程发生当天(上午9点) time(s) - + 次后 Enter a name please - + 名称不能为空 The name can not only contain whitespaces - + 名称不能设置为全空格,请修改 Type: - + 类型: Description: - + 内容: All Day: - + 全天: Starts: - + 开始时间: Ends: - + 结束时间: Remind Me: - + 提醒: Repeat: - + 重复: End Repeat: - + 结束重复: Calendar account: - + 日历帐户: Calendar account - + 日历帐户 Type - + 类型 Description - + 内容 All Day - + 全天 Time: - + 时间: Time - + 时间 Solar - + 公历 Lunar - + 农历 Starts - + 开始时间 Ends - + 结束时间 Remind Me - + 提醒 Repeat - + 重复 Daily - + 每天 Weekdays - + 工作日 Weekly - + 每周 Monthly - + 每月 Yearly - + 每年 End Repeat - + 结束重复 After - + On - + 于日期 Cancel button - + 取 消 Save button - + 保 存 CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + 重复日程的所有重复必须具有相同的全天状态。 Do you want to change all occurrences? - + 您要更改所有重复吗? Cancel button - + 取 消 Change All - + 全部更改 You are changing the repeating rule of this event. - + 您正在更改日程的重复规则。 You are deleting an event. - + 您正在删除日程。 Are you sure you want to delete this event? - + 您确定要删除此日程吗? Delete button - + 删 除 Do you want to delete all occurrences of this event, or only the selected occurrence? - + 您要删除此日程的所有重复,还是只删除所选重复? Delete All - + 全部删除 Delete Only This Event - + 仅删除此日程 Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + 您要删除此日程的这个重复和所有将来重复,还是只删除所选重复? Delete All Future Events - + 删除所有将来日程 You are changing a repeating event. - + 您正在更改重复日程。 Do you want to change only this occurrence of the event, or all occurrences? - + 您要更改此日程的仅这一个重复,还是更改它的所有重复? All - + 全部日程 Only This Event - + 仅此日程 Do you want to change only this occurrence of the event, or this and all future occurrences? - + 您要更改此日程的这个重复和所有将来重复,还是只更改所选重复? All Future Events - + 所有将来日程 You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + 您选择的是闰月,将按照农历规则提醒 OK button - + 确 定 CScheduleSearchDateItem Y - + M - + D - + CScheduleSearchItem Edit - + 编辑 Delete - + 删除 All Day - + 全天 CScheduleSearchView No search results - + 无搜索结果 CScheduleView ALL DAY - + 全天 CSettingDialog - Sunday - + Manual + 手动 - Monday - + 15 mins + 每15分钟 - 24-hour clock - + 30 mins + 每30分钟 - 12-hour clock - + 1 hour + 每1小时 - Manual - + 24 hours + 每24小时 - 15 mins - + Sync Now + 立即同步 - 30 mins - + Last sync + 最近同步时间 - 1 hour - + Monday + 周一 - 24 hours - + Sunday + 周日 - Sync Now - + 12-hour clock + 12小时制 - Last sync - + 24-hour clock + 24小时制 + + + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + CTimeEdit (%1 mins) - + (%1分钟) (%1 hour) - + (%1小时) (%1 hours) - + (%1小时) CTitleWidget Y - + M - + W - + D - + Search events and festivals - + 搜索日程/节日 CWeekWidget Sun - + Mon - + Tue - + Wed - + Thu - + Fri - + Sat - + CWeekWindow Week - + Y - + CYearScheduleView All Day - + 全天 No event - + 无日程 CYearWindow Y - + CalendarWindow Calendar - + 日历 Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + 日历是一款查看日期、管理日程的小工具。 Calendarmainwindow Calendar - + 日历 Manage - + 管理 Privacy Policy - + 隐私政策 Syncing... - + 正在同步... Sync successful - + 同步成功 Sync failed, please try later - + 同步失败,请稍后再试 CenterWidget All Day - + 全天 @@ -744,91 +762,91 @@ DragInfoGraphicsView Edit - + 编辑 Delete - + 删除 New event - + 新建日程 New Event - + 新建日程 JobTypeListView You are deleting an event type. - + 您正在删除日程类型。 All events under this type will be deleted and cannot be recovered. - + 此日程类型下的所有日程都会删除且不可恢复。 Cancel button - + 取 消 Delete button - + 删 除 QObject Account settings - + 帐户设置 Account - + 账户 Select items to be synced - + 设置您的同步项 Events - + 日程 General settings - + 通用设置 Sync interval - + 同步频率 Manage calendar - + 日历管理 Calendar account - + 日历帐户 Event types - + 日程类型 General - + 通用 First day of week - + 每星期开始于 Time - + 时间 @@ -836,7 +854,7 @@ Today Return - 今天 + 返回今天 @@ -844,86 +862,86 @@ Today Return Today - 今天 + 返回今天 ScheduleTypeEditDlg New event type - + 新增日程类型 Edit event type - + 编辑日程类型 Name: - + 名称: Color: - + 颜色: Cancel button - + 取 消 Save button - + 保 存 The name can not only contain whitespaces - + 名称不能设置为全空格,请修改 Enter a name please - + 名称不能为空 Shortcut Help - + 帮助 Delete event - + 删除日程 Copy - + 复制 Cut - + 剪切 Paste - + 粘贴 Delete - + 删除 Select all - + 全选 SidebarCalendarWidget Y - + M - + @@ -931,7 +949,7 @@ Go button - + 跳 转 @@ -939,19 +957,19 @@ Sign In button - + 登 录 Sign Out button - + 退出登录 YearFrame Y - + @@ -959,7 +977,7 @@ Today Today - 今天 + 今天 - + \ No newline at end of file diff --git a/translations/dde-calendar-service_zh_HK.ts b/translations/dde-calendar-service_zh_HK.ts index 56533c10..f133a096 100644 --- a/translations/dde-calendar-service_zh_HK.ts +++ b/translations/dde-calendar-service_zh_HK.ts @@ -5,532 +5,560 @@ AccountItem Sync successful - + 同步成功 Network error - + 網絡異常 Server exception - + 伺服器異常 Storage full - + 存儲已滿 AccountManager Local account - + 本地帳戶 Event types - + 日程類型 CColorPickerWidget Color - + 顏色 Cancel button - + 取 消 Save button - + 保 存 CDayMonthView Monday - + 星期一 Tuesday - + 星期二 Wednesday - + 星期三 Thursday - + 星期四 Friday - + 星期五 Saturday - + 星期六 Sunday - + 星期日 CDayWindow Y - + M - + D - + Lunar - + 農曆 CGraphicsView New Event - + 新建日程 CMonthScheduleNumItem %1 more - + 還有%1項 CMonthView New event - + 新建日程 New Event - + 新建日程 CMonthWindow Y - + CMyScheduleView My Event - + 我的日程 OK button - + 確 定 Delete button - + 刪 除 Edit button - + 更 改 CPushButton New event type - + 新增日程類型 CScheduleDlg New Event - + 新建日程 Edit Event - + 更改日程 End time must be greater than start time - + 結束時間需晚於開始時間 OK button - + 確 定 Never - + 永不 At time of event - + 日程開始時 15 minutes before - + 15分鐘前 30 minutes before - + 30分鐘前 1 hour before - + 1小時前 1 day before - + 1天前 2 days before - + 2天前 1 week before - + 1週前 On start day (9:00 AM) - + 日程發生當天(上午9點) time(s) - + 次後 Enter a name please - + 名稱不能為空 The name can not only contain whitespaces - + 名稱不能設置為全空格,請修改 Type: - + 類型: Description: - + 描述: All Day: - + 全天: Starts: - + 開始時間: Ends: - + 結束時間: Remind Me: - + 提醒: Repeat: - + 重複: End Repeat: - + 結束重複: Calendar account: - + 日曆帳戶: Calendar account - + 日曆帳戶 Type - + 類型 Description - + 描述 All Day - + 全天 Time: - + 時間: Time - + 時間 Solar - + 公曆 Lunar - + 農曆 Starts - + 開始時間 Ends - + 結束時間 Remind Me - + 提醒 Repeat - + 重複 Daily - + 每天 Weekdays - + 工作日 Weekly - + 每週 Monthly - + 每月 Yearly - + 每年 End Repeat - + 結束重複 After - + On - + 於日期 Cancel button - + 取 消 Save button - + 保 存 CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + 重複日程的所有重複必須具有相同的全天狀態。 Do you want to change all occurrences? - + 您要更改所有重複嗎? Cancel button - + 取 消 Change All - + 全部更改 You are changing the repeating rule of this event. - + 您正在更改日程的重複規則。 You are deleting an event. - + 您正在刪除日程。 Are you sure you want to delete this event? - + 您確定要刪除此日程嗎? Delete button - + 刪 除 Do you want to delete all occurrences of this event, or only the selected occurrence? - + 您要刪除此日程的所有重複,還是只刪除所選重複? Delete All - + 全部刪除 Delete Only This Event - + 僅刪除此日程 Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + 您要刪除此日程的這個重複和所有將來重複,還是只刪除所選重複? Delete All Future Events - + 刪除所有將來日程 You are changing a repeating event. - + 您正在更改重複日程。 Do you want to change only this occurrence of the event, or all occurrences? - + 您要更改此日程的僅這一個重複,還是更改它的所有重複? All - + 全部日程 Only This Event - + 僅此日程 Do you want to change only this occurrence of the event, or this and all future occurrences? - + 您要更改此日程的這個重複和所有將來重複,還是只更改所選重複? All Future Events - + 所有將來日程 You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + 您選擇的是閏月,將按照農曆規則提醒 OK button - + 確 定 CScheduleSearchDateItem Y - + M - + D - + CScheduleSearchItem Edit - + 更改 Delete - + 刪除 All Day - + 全天 CScheduleSearchView No search results - + 無搜索結果 CScheduleView ALL DAY - + 全天 CSettingDialog - Sunday - - - - Monday - - - - 24-hour clock - - - - 12-hour clock + import ICS file Manual - + 手動 15 mins - + 每15分鐘 30 mins - + 每30分鐘 1 hour - + 每1小時 24 hours - + 每24小時 Sync Now - + 立即同步 Last sync + 最近同步時間 + + + Monday + 週一 + + + Tuesday + 星期二 + + + Wednesday + 星期三 + + + Thursday + 星期四 + + + Friday + 星期五 + + + Saturday + 星期六 + + + Sunday + 週日 + + + 12-hour clock + 12小時制 + + + 24-hour clock + 24小時制 + + + Please go to the <a href='/'>Control Center</a> to change settings @@ -538,143 +566,143 @@ CTimeEdit (%1 mins) - + (%1分鐘) (%1 hour) - + (%1小時) (%1 hours) - + (%1小時) CTitleWidget Y - + M - + W - + D - + Search events and festivals - + 搜索日程/節日 CWeekWidget Sun - + Mon - + Tue - + Wed - + Thu - + Fri - + Sat - + CWeekWindow Week - + Y - + CYearScheduleView All Day - + 全天 No event - + 無日程 CYearWindow Y - + CalendarWindow Calendar - + 日曆 Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + 日曆是一款查看日期、管理日程的小工具。 Calendarmainwindow Calendar - + 日曆 Manage - + 管理 Privacy Policy - + 私隱政策 Syncing... - + 正在同步... Sync successful - + 同步成功 Sync failed, please try later - + 同步失敗,請稍後再試 CenterWidget All Day - + 全天 @@ -744,91 +772,99 @@ DragInfoGraphicsView Edit - + 更改 Delete - + 删除 New event - + 新建日程 New Event - + 新建日程 JobTypeListView - You are deleting an event type. + export - All events under this type will be deleted and cannot be recovered. + import ICS file + + You are deleting an event type. + 您正在刪除日程類型。 + + + All events under this type will be deleted and cannot be recovered. + 此日程類型下的所有日程都會刪除且不可恢復。 + Cancel button - + 取 消 Delete button - + 刪 除 QObject Account settings - + 帳戶設置 Account - + 賬戶 Select items to be synced - + 設置您的同步項 Events - + 日程 General settings - + 通用設置 Sync interval - + 同步頻率 Manage calendar - + 日曆管理 Calendar account - + 日曆帳戶 Event types - + 日程類型 General - + 通用 First day of week - + 每星期開始於 Time - + 時間 @@ -836,7 +872,7 @@ Today Return - 今天 + 今天 @@ -844,86 +880,94 @@ Today Return Today - 今天 + 今天 ScheduleTypeEditDlg New event type - + 新增日程類型 Edit event type + 編輯日程類型 + + + Import ICS file Name: - + 名稱: Color: + 顏色: + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: Cancel button - + 取 消 Save button - + 保 存 The name can not only contain whitespaces - + 名稱不能設置為全空格,請修改 Enter a name please - + 名稱不能為空 Shortcut Help - + 幫助 Delete event - + 刪除日程 Copy - + 複製 Cut - + 剪下 Paste - + 黏貼 Delete - + 刪除 Select all - + 選擇全部 SidebarCalendarWidget Y - + M - + @@ -931,7 +975,7 @@ Go button - + 跳 轉 @@ -939,19 +983,19 @@ Sign In button - + 登 錄 Sign Out button - + 退出登錄 YearFrame Y - + @@ -959,7 +1003,7 @@ Today Today - 今天 + 今天 diff --git a/translations/dde-calendar-service_zh_TW.ts b/translations/dde-calendar-service_zh_TW.ts index e94dc258..d9a60050 100644 --- a/translations/dde-calendar-service_zh_TW.ts +++ b/translations/dde-calendar-service_zh_TW.ts @@ -5,532 +5,560 @@ AccountItem Sync successful - + 同步成功 Network error - + 網路異常 Server exception - + 伺服器異常 Storage full - + 儲存已滿 AccountManager Local account - + 本機帳戶 Event types - + 日程類型 CColorPickerWidget Color - + 顏色 Cancel button - + 取 消 Save button - + 儲 存 CDayMonthView Monday - + 星期一 Tuesday - + 星期二 Wednesday - + 星期三 Thursday - + 星期四 Friday - + 星期五 Saturday - + 星期六 Sunday - + 星期日 CDayWindow Y - + M - + D - + Lunar - + 農曆 CGraphicsView New Event - + 建立日程 CMonthScheduleNumItem %1 more - + 還有%1項 CMonthView New event - + 建立日程 New Event - + 建立日程 CMonthWindow Y - + CMyScheduleView My Event - + 我的日程 OK button - + 確 定 Delete button - + 刪 除 Edit button - + 編 輯 CPushButton New event type - + 新增日程類型 CScheduleDlg New Event - + 建立日程 Edit Event - + 編輯日程 End time must be greater than start time - + 結束時間需晚於開始時間 OK button - + 確 定 Never - + 從不 At time of event - + 日程開始時 15 minutes before - + 15分鐘前 30 minutes before - + 30分鐘前 1 hour before - + 1小時前 1 day before - + 1天前 2 days before - + 2天前 1 week before - + 1週前 On start day (9:00 AM) - + 日程發生當天(上午9點) time(s) - + 次後 Enter a name please - + 名稱不能為空 The name can not only contain whitespaces - + 名稱不能設置為全空格,請修改 Type: - + 類型: Description: - + 內容: All Day: - + 全天: Starts: - + 開始時間: Ends: - + 結束時間: Remind Me: - + 提醒: Repeat: - + 重複: End Repeat: - + 結束重複: Calendar account: - + 日曆帳戶: Calendar account - + 日曆帳戶 Type - + 類型 Description - + 內容 All Day - + 全天 Time: - + 時間: Time - + 時間 Solar - + 公曆 Lunar - + 農曆 Starts - + 開始時間 Ends - + 結束時間 Remind Me - + 提醒 Repeat - + 重複 Daily - + 每天 Weekdays - + 工作日 Weekly - + 每週 Monthly - + 每月 Yearly - + 每年 End Repeat - + 結束重複 After - + On - + 於日期 Cancel button - + 取 消 Save button - + 儲 存 CScheduleOperation All occurrences of a repeating event must have the same all-day status. - + 重複日程的所有重複必須具有相同的全天狀態。 Do you want to change all occurrences? - + 您要更改所有重複嗎? Cancel button - + 取 消 Change All - + 全部更改 You are changing the repeating rule of this event. - + 您正在更改日程的重複規則。 You are deleting an event. - + 您正在刪除日程。 Are you sure you want to delete this event? - + 您確定要刪除此日程嗎? Delete button - + 刪 除 Do you want to delete all occurrences of this event, or only the selected occurrence? - + 您要刪除此日程的所有重複,還是只刪除所選重複? Delete All - + 全部刪除 Delete Only This Event - + 僅刪除此日程 Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + 您要刪除此日程的這個重複和所有將來重複,還是只刪除所選重複? Delete All Future Events - + 刪除所有將來日程 You are changing a repeating event. - + 您正在更改重複日程。 Do you want to change only this occurrence of the event, or all occurrences? - + 您要更改此日程的僅這一個重複,還是更改它的所有重複? All - + 全部日程 Only This Event - + 僅此日程 Do you want to change only this occurrence of the event, or this and all future occurrences? - + 您要更改此日程的這個重複和所有將來重複,還是只更改所選重複? All Future Events - + 所有將來日程 You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + 您選擇的是閏月,將按照農曆規則提醒 OK button - + 確 定 CScheduleSearchDateItem Y - + M - + D - + CScheduleSearchItem Edit - + 編輯 Delete - + 刪除 All Day - + 全天 CScheduleSearchView No search results - + 找不到結果 CScheduleView ALL DAY - + 全天 CSettingDialog - Sunday - - - - Monday - - - - 24-hour clock - - - - 12-hour clock + import ICS file Manual - + 手動 15 mins - + 每15分鐘 30 mins - + 每30分鐘 1 hour - + 每1小時 24 hours - + 每24小時 Sync Now - + 立即同步 Last sync + 最近同步時間 + + + Monday + 週一 + + + Tuesday + 星期二 + + + Wednesday + 星期三 + + + Thursday + 星期四 + + + Friday + 星期五 + + + Saturday + 星期六 + + + Sunday + 週日 + + + 12-hour clock + 12小時制 + + + 24-hour clock + 24小時制 + + + Please go to the <a href='/'>Control Center</a> to change settings @@ -538,143 +566,143 @@ CTimeEdit (%1 mins) - + (%1分鐘) (%1 hour) - + (%1小時) (%1 hours) - + (%1小時) CTitleWidget Y - + M - + W - + D - + Search events and festivals - + 搜尋日程/節日 CWeekWidget Sun - + Mon - + Tue - + Wed - + Thu - + Fri - + Sat - + CWeekWindow Week - + Y - + CYearScheduleView All Day - + 全天 No event - + 無日程 CYearWindow Y - + CalendarWindow Calendar - + 日曆 Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. - + 日曆是一款查看日期、管理日程的小工具。 Calendarmainwindow Calendar - + 日曆 Manage - + 管理 Privacy Policy - + 隱私政策 Syncing... - + 正在同步... Sync successful - + 同步成功 Sync failed, please try later - + 同步失敗,請稍後再試 CenterWidget All Day - + 全天 @@ -744,91 +772,99 @@ DragInfoGraphicsView Edit - + 編輯 Delete - + 刪除 New event - + 建立日程 New Event - + 建立日程 JobTypeListView - You are deleting an event type. + export - All events under this type will be deleted and cannot be recovered. + import ICS file + + You are deleting an event type. + 您正在刪除日程類型。 + + + All events under this type will be deleted and cannot be recovered. + 此日程類型下的所有日程都會刪除且不可恢復。 + Cancel button - + 取 消 Delete button - + 刪 除 QObject Account settings - + 帳戶設定 Account - + 帳戶 Select items to be synced - + 設定您的同步項 Events - + 日程 General settings - + 一般設定 Sync interval - + 同步頻率 Manage calendar - + 日曆管理 Calendar account - + 日曆帳戶 Event types - + 日程類型 General - + 通用 First day of week - + 每星期開始於 Time - + 時間 @@ -836,7 +872,7 @@ Today Return - 今天 + 今天 @@ -844,86 +880,94 @@ Today Return Today - 今天 + 今天 ScheduleTypeEditDlg New event type - + 新增日程類型 Edit event type + 編輯日程類型 + + + Import ICS file Name: - + 名稱: Color: + 顏色: + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: Cancel button - + 取 消 Save button - + 儲 存 The name can not only contain whitespaces - + 名稱不能設置為全空格,請修改 Enter a name please - + 名稱不能為空 Shortcut Help - + 幫助 Delete event - + 刪除日程 Copy - + 複製 Cut - + 剪下 Paste - + 貼上 Delete - + 刪除 Select all - + 全選 SidebarCalendarWidget Y - + M - + @@ -931,7 +975,7 @@ Go button - + 跳 轉 @@ -939,19 +983,19 @@ Sign In button - + 登 入 Sign Out button - + 退出登入 YearFrame Y - + @@ -959,7 +1003,7 @@ Today Today - 今天 + 今天 diff --git a/translations/dde-calendar_ar.ts b/translations/dde-calendar_ar.ts index 1b437e47..b18cbd6b 100644 --- a/translations/dde-calendar_ar.ts +++ b/translations/dde-calendar_ar.ts @@ -42,19 +42,19 @@ Color - + لون Cancel button - إلغاء + إلغاء Save button - حفظ + حفظ @@ -137,12 +137,12 @@ CMonthView - + New event حدث جديد - + New Event حدث جديد @@ -267,6 +267,14 @@ On start day (9:00 AM) في يوم البَدْء (9:00 صباحا) + + + + + + time(s) + الوقت(ج) + Enter a name please @@ -437,14 +445,6 @@ On تشغيل - - - - - - time(s) - الوقت(ج) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? هل تريد تغيير كل الأحداث؟ + + + + + + + + + Cancel + button + إلغاء + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? هل أنت متأكد من أنك تريد حذف هذا الحدث؟ - - - - - - - - - Cancel - button - إلغاء - Delete @@ -579,7 +579,7 @@ OK button - + موافق @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY طوال اليوم @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - الأحد + الأحد - + Monday - الاثنين + الاثنين + + + + Tuesday + الثلاثاء + + + + Wednesday + الأربعاء + + + + Thursday + الخميس - + + Friday + الجمعة + + + + Saturday + السبت + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + يدوي + + + 15 mins - + 30 mins - + 1 hour - + 1 ساعة - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + الأحد Mon - + الاثنين Tue - + الثلاثاء Wed - + الأربعاء Thu - + الخميس Fri - + الجمعة Sat - + السبت @@ -807,7 +842,7 @@ CYearWindow - + Y السنة @@ -815,12 +850,12 @@ CalendarWindow - + Calendar التقويم - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. التقويم هو برنامج لعرض التواريخ وللتخطيط الذكي لجميع الأشياء في الحياة @@ -845,7 +880,7 @@ Syncing... - + جاري المزامنة... @@ -871,17 +906,17 @@ Work - العمل + عمل Life - الحياة الخاصة + حياة Other - أمر آخر + أخرى @@ -893,22 +928,22 @@ Close button - + إغلاق One day before start - + يوم قبل البداية Remind me tomorrow - + ذكرني غدا Remind me later - + ذكرني لاحقا @@ -930,12 +965,12 @@ Tomorrow - + غدا Schedule Reminder - + تذكير بالبرنامج @@ -947,7 +982,7 @@ Today - اليوم + اليوم @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - إلغاء + إلغاء - + Delete button - حذف + حذف QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + حساب + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + عام - + First day of week - + Time @@ -1067,7 +1112,7 @@ Return - + Today Return اليوم @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - - Name: + + Import ICS file - + + Name: + الاسم : + + + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - إلغاء + إلغاء - + Save button - حفظ + حفظ @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - + السنة M - + الشهر @@ -1195,19 +1251,19 @@ Sign In button - + تسجيل الدخول Sign Out button - + تسجيل الخروج YearFrame - + Y السنة @@ -1221,8 +1277,8 @@ - - + + Today Today اليوم diff --git a/translations/dde-calendar_az.ts b/translations/dde-calendar_az.ts index e55d8575..387aefeb 100644 --- a/translations/dde-calendar_az.ts +++ b/translations/dde-calendar_az.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Yerli hesab - + Event types - Tədbirin növləri + Tədbirin növləri @@ -121,7 +119,7 @@ CGraphicsView - + New Event Yeni tədbir @@ -137,12 +135,12 @@ CMonthView - + New event Yeni tədbir - + New Event Yeni tədbir @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Yeni tədbir - + Edit Event Tədbirə düzəliş etmək - + End time must be greater than start time Bitmə tarixi başlama tarixindən böyük olmalıdır - + OK button OK - - - - - - + + + + + + Never Heç vaxt - + At time of event Tədbir zamanı - + 15 minutes before 15 dəqiqə əvvəl - + 30 minutes before 30 dəqiqə əvvəl - + 1 hour before 1 saat əvvəl - - + + 1 day before 1 gün əvvəl - - + + 2 days before 2 gün əvvəl - - + + 1 week before 1 həftə əvvəl - + On start day (9:00 AM) Başlanğıc günü (9:00) - - - + + + time(s) vaxt(lar) - + Enter a name please Lütfən adı daxil edin - + The name can not only contain whitespaces Ad təkcə ara boşluqlarından ibarət ola bilməz - - + + Type: Növ: - - + + Description: Təsviri: - - + + All Day: Bütün gün: - - + + Starts: Başlayır: - - + + Ends: Başa çatır: - - + + Remind Me: Mənə xatırlat: - - + + Repeat: Təkrar: - - + + End Repeat: Təkrarın sonu: - + Calendar account: Təqvim hesabı: - + Calendar account Təqvim hesabı - + Type Növ - + Description Təsviri - + All Day Bütün gün - + Time: Vaxt: - + Time Vaxt - + Solar Günəş - + Lunar Ay - + Starts Başlayır - + Ends Başa çatır - + Remind Me Mənə xatırlat - + Repeat Təkrar - - + + Daily Hər gün - - + + Weekdays Həftənin günləri - - + + Weekly Həftə - - - + + + Monthly Ay - - - + + + Yearly İl - + End Repeat Təkrarın sonu - + After Sonra - + On Açıq - + Cancel button İmtina - + Save button Saxlayın @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Təkrarlanan tədbirlərin bütün hadisələri gün boyu eyni statusa malik olmalıdır. - - + + Do you want to change all occurrences? Bütün hadisələrə dəyişmək istəyrisiniz? - - - - - - - + + + + + + + Cancel button İmtina - - + + Change All Hamısını dəyişmək - + You are changing the repeating rule of this event. Siz bu tədbirin təkrarlanma qaydasını dəyişirsiniz. - - - + + + You are deleting an event. Siz tədbiri silirsiniz. - + Are you sure you want to delete this event? Bu tədbiri silmək istədiyinizə əminsiniz? - + Delete button Silmək - + Do you want to delete all occurrences of this event, or only the selected occurrence? Siz bu tədbirin bütün hadisələrini, yoxsa yalnız seçilmiş hadisəsini silmək istəyirsiniz? - + Delete All Hamısını silin - - + + Delete Only This Event Yalnız bu tədbiri silin - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Siz bu tədbirin bütün gələcək hadisələrini, yoxsa yalnız seçilmiş hadisəsini silmək istəyirsiniz? - + Delete All Future Events Bütün gələcək tədbirləri silin - - + + You are changing a repeating event. Siz təkrarlanan tədbiri dəyişirsiniz. - + Do you want to change only this occurrence of the event, or all occurrences? Siz bu tədbirin yalnız bu hadisəsini, yoxsa bütün hadisələrini silmək istəyirsiniz? - + All Hamısını - - + + Only This Event Yalnız bu tədbiri - + Do you want to change only this occurrence of the event, or this and all future occurrences? Siz tədbirin yalnız bu hadisəsini yoxsa, bu və bütün gələcək hadisələrini silmək istəyirsiniz? - + All Future Events Bütün gələcək tədbirlər - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Siz uzun ay seşmisiniz və xatırlatma ay təqvimi qaydalarına uyğun olacaq. - + OK button OLDU @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY BÜTÜN GÜN @@ -637,60 +635,96 @@ CSettingDialog - + Sunday Bazar - + Monday Bazar ertəsi - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock 24 saat vaxt formatı - + 12-hour clock 12 saat vaxt formatı - + + import ICS file + ICS faylını idxal edin + + + Manual Əl ilə - + 15 mins 15 dəqiqə - + 30 mins 30 dəqiqə - + 1 hour 1 saat - + 24 hours 24 saat - + Sync Now İndi eyniləşdirin - + Last sync Sonuncu eyniləşmə + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -780,12 +814,12 @@ CWeekWindow - + Week Həftə - + Y İl @@ -807,7 +841,7 @@ CYearWindow - + Y İl @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Təqvim - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Təqvim tarixləri göstərən və həmçinin gündəlik həyatınızdakı gələcək işlərinizi planlamaq üçün bir gündəlikdir. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Təqvim - + Manage İdarə edin - + Privacy Policy Məxfilik Siyasəti - + Syncing... Eyniləşdirilir... - + Sync successful Eyniləşdirmə uğurlu oldu - + Sync failed, please try later Eyniləşdirmə alınmadı, lütfən yenidən cəhd edin @@ -869,85 +903,64 @@ DAccountDataBase - Work - + İş - Life - + Həyat - Other - + Digər DAlarmManager - - - - Close button - + Bağlayın - One day before start - + Başlamadan bir gün əvvəl - Remind me tomorrow - + Mənə sabah xatırlat - Remind me later - + Mənə sonra xatırlat - 15 mins later - + 15 dəq sonra - 1 hour later - + 1 saat sonra - 4 hours later - + 4 saat sonra - - - Tomorrow - + Sabah - Schedule Reminder - + Xatırlatma cədvəli - - %1 to %2 - + %1 ilə %2 arası - - Today - Bu gün + Bu gün @@ -976,23 +989,33 @@ JobTypeListView - + + export + ixrac edin + + + + import ICS file + ICS faylını idxal edin + + + You are deleting an event type. Siz tədbir növünü silirsiniz. - + All events under this type will be deleted and cannot be recovered. Bu qəbildən bütün tədbirlər silinəcəklər və bərpa oluna bilməzlər. - + Cancel button İmtina - + Delete button Silin @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Təqvimi idarə edin - - + + Event types Tədbirin növləri - + Account settings Hesab ayarları - + Account İstifadəçi hesabı - + Select items to be synced Eyniləşdiriləcək elementləri seçin - + Events Tədbirlər - - + + General settings Ümumi ayarlar - + Sync interval Eyniləşdirmə aralığı - + Calendar account Təqvim hesabı - + General Ümumi - + First day of week Həftənin ilk günü - + Time Vaxt @@ -1067,7 +1090,7 @@ Return - + Today Return Bu gün @@ -1078,7 +1101,7 @@ - + Today Return Today Bu gün @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Yeni tədbir növü - + Edit event type Tədbir növünü dəyişin - + + Import ICS file + ICS faylını idxal edin + + + Name: Ad: - + Color: Rəng: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> Fayl: + + + Cancel button İmtina - + Save button Saxla @@ -1124,7 +1158,7 @@ Ad təkcə ara boşluqlarından ibarət ola bilməz - + Enter a name please Lütfən adı daxil edin @@ -1207,7 +1241,7 @@ YearFrame - + Y İl @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Bu gün - + \ No newline at end of file diff --git a/translations/dde-calendar_bo.ts b/translations/dde-calendar_bo.ts index c0ad1b0a..7284230b 100644 --- a/translations/dde-calendar_bo.ts +++ b/translations/dde-calendar_bo.ts @@ -1,40 +1,38 @@ - - - + AccountItem Sync successful - + མཉམ་བགྲོད་ལེགས་གྲུབ། Network error - + དྲ་རྒྱ་ནོར་བ། Server exception - + ཞབས་ཞུ་འཕྲུལ་ཆས་རྒྱུན་འགལ། Storage full - + ཉར་གསོག་གང་བ། AccountManager - + Local account - + རང་སའི་རྩའི་ཁྲ། - + Event types - + ཉིན་རེའི་ལས་རིམ་རིགས་གྲས། @@ -42,19 +40,19 @@ Color - + ཚོན་མདོག Cancel button - ཕྱིར་འཐེན། + འདོར་བ། Save button - ཉར་གསོག་ + ཉར་གསོག་ @@ -115,13 +113,13 @@ Lunar - + ལུགས་རྙིང་ལོ་ཐོ། CGraphicsView - + New Event ལས་རིམ་གསར་པ། @@ -137,12 +135,12 @@ CMonthView - + New event ལས་རིམ་གསར་པ། - + New Event ལས་རིམ་གསར་པ། @@ -186,273 +184,273 @@ New event type - + གསར་སྣོན་ཉིན་རེའི་ལས་རིམ་རིགས། CScheduleDlg - - - + + + New Event ལས་རིམ་གསར་པ། - + Edit Event ལས་རིམ་རྩོམ་སྒྲིག - + End time must be greater than start time མཇུག་འགྲིལ་བའི་དུས་ཚོད་འགོ་འཛུགས་དུས་ཚོད་ལས་འཕྱི་བ་དགོས། - + OK button གཏན་ཁེལ། - - - - - - + + + + + + Never ནམ་ཡང་མིན། - + At time of event ལས་རིམ་འགོ་འཛུགས་དུས། - + 15 minutes before སྐར་མ་15སྔོན་ལ། - + 30 minutes before སྐར་མ་30སྔོན་ལ། - + 1 hour before ཆུ་ཚོད་1སྔོན་ལ། - - + + 1 day before ཉིན་1སྔོན་ལ། - - + + 2 days before ཉིན་2སྔོན་ལ། - - + + 1 week before གཟའ་འཁོར་1སྔོན་ལ། - + On start day (9:00 AM) ལས་རིམ་འགོ་ཚུགས་པའི་ཉིན།(9:00སྔ་དྲོའི་ཆུ་ཚོད།) - + + + + + time(s) + ཐེངས་གྲངས།(ཐེངས) + + + Enter a name please - + མིང་སྟོང་པ་ཡིན་མི་རུང་། - + The name can not only contain whitespaces - + མིང་ཚང་མ་སྟོང་པ་ཡིན་མི་རུང་བས། བཟོ་བཅོས་བྱེད་རོགས། - - + + Type: རིགས་གྲས། - - + + Description: ནང་དོན། - - + + All Day: ཉིན་གང་། - - + + Starts: འགོ་འཛུགས་དུས་ཚོད། - - + + Ends: མཇུག་སྒྲིལ་དུས་ཚོད། - - + + Remind Me: དྲན་སྐུལ། - - + + Repeat: བསྐྱར་ཟློས། - - + + End Repeat: བསྐྱར་ཟློས་མཇུག་འགྲིལ་བ། - + Calendar account: - + ལོ་ཐོའི་རྩིས་ཁྲ། - + Calendar account - + ལོ་ཐོའི་རྩིས་ཁྲ། - + Type རིགས་གྲས། - + Description ནང་དོན། - + All Day ཉིན་གང་། - + Time: - + དུས་ཚོད། - + Time - + ཐོ་འཇུག་པའི་དུས་ཚོད། - + Solar - + སྤྱི་ལོ། - + Lunar - + ལུགས་རྙིང་ལོ་ཐོ། - + Starts འགོ་འཛུགས་དུས་ཚོད། - + Ends མཇུག་སྒྲིལ་དུས་ཚོད། - + Remind Me དྲན་སྐུལ། - + Repeat བསྐྲར་ཟློས། - - + + Daily ཉིན་རེ། - - + + Weekdays ལས་ཀའི་ཉིན་གྲངས། - - + + Weekly བདུན་རེ། - - - + + + Monthly ཟླ་རེ། - - - + + + Yearly ལོ་རེ། - + End Repeat བསྐྱར་ཟློས་མཇུག་འགྲིལ་བ། - + After རྗེས་ལ། - + On ལ། - - - - - time(s) - ཐེངས་གྲངས།(ཐེངས) - - - + Cancel button ཕྱིར་འཐེན། - + Save button ཉར་གསོག་ @@ -461,125 +459,125 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. བསྐྱར་ཟློས་ཀྱི་ཉིན་རེའི་ལས་རིམ་གྱི་བསྐྱར་ཟློས་ཚང་མར་ཉིན་ཧྲིལ་པོའི་རྣམ་པ་གཅིག་མཚུངས་ཡོད་དགོས། - - + + Do you want to change all occurrences? ཁྱོད་ཀྱིས་བསྐྱར་ཟློས་ཚང་མ་བཟོ་བཅོས་བྱེད་རྒྱུ་ཡིན་ནམ། + + + + + + Cancel + button + ཕྱིར་འཐེན། + + + + Change All ཚང་མ་བཟོ་བཅོས་བྱེད། - + You are changing the repeating rule of this event. ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་གྱི་བསྐྱར་ཟློས་ཀྱི་སྒྲིག་སྲོལ་བཟོ་བཅོས་བྱེད་བཞིན་ཡོད། - - - + + + You are deleting an event. ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་བསུབ་བཞིན་ཡོད། - + Are you sure you want to delete this event? ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་འདི་བསུབ་རྒྱུ་ཡིན་པ་གཏན་འཁེལ་ལམ། - - - - - - - - Cancel - button - ཕྱིར་འཐེན། - - - + Delete button སུབ་པ། - + Do you want to delete all occurrences of this event, or only the selected occurrence? ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་འདིའི་བསྐྱར་ཟློས་ཚང་མ་བསུབ་རྒྱུ་ཡིན་ནམ། ཡང་ན་བདམས་ཡོད་པའི་བསྐྱར་ཟློས་དག་བསུབ་རྒྱུ་ཡིན། - + Delete All ཚང་མ་སུབ་པ། - - + + Delete Only This Event ཉིན་རེའི་ལས་རིམ་འདི་སུབ་པ། - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་འདིའི་བསྐྱར་ཟློས་འདི་དང་མ་འོངས་ཀྱི་བསྐྱར་ཟློས་ཚང་མ་བསུབ་རྒྱུ་ཡིན་ནམ། ཡང་ན་བདམས་ཡོད་པའི་བསྐྱར་ཟློས་དག་བསུབ་རྒྱུ་ཡིན། - + Delete All Future Events མ་འོངས་ཀྱི་ཉིན་རེའི་ལས་རིམ་ཚང་མ་སུབ་པ། - - + + You are changing a repeating event. ཁྱོད་ཀྱིས་བསྐྱར་ཟློས་ཀྱི་ཉིན་རེའི་ལས་རིམ་དག་བཟོ་བཅོས་བྱེད་བཞིན་ཡོད། - + Do you want to change only this occurrence of the event, or all occurrences? ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་འདིའི་བསྐྱར་ཟློས་འདི་བཟོ་བཅོས་བྱེད་རྒྱུ་ཡིན་ནམ། ཡང་ན་དེའི་བསྐྱར་ཟློས་ཚང་མ་བཟོ་བཅོས་བྱེད་རྒྱུ་ཡིན། - + All ཉིན་རེའི་ལས་རིམ་ཆ་ཚང་། - - + + Only This Event ཉིན་རེའི་ལས་རིམ་འདི་ཉིད། - + Do you want to change only this occurrence of the event, or this and all future occurrences? ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་འདིའི་བསྐྱར་ཟློས་འདི་དང་མ་འོངས་ཀྱི་བསྐྱར་ཟློས་ཚང་མ་བཟོ་བཅོས་བྱེད་རྒྱུ་ཡིན་ནམ། ཡང་ན་བདམས་ཡོད་པའི་བསྐྱར་ཟློས་དག་བཟོ་བཅོས་བྱེད་རྒྱུ་ཡིན། - + All Future Events མ་འོངས་ཀྱི་ཉིན་རེའི་ལས་རིམ་ཚང་མ། - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + ཁྱོད་ཀྱིས་བདམས་པ་དེ་ཟླ་བཤོལ་ཡིན་པས། ལུགས་རྙིང་ལོ་ཐོའི་སྒྲིག་སྲོལ་ལྟར་དྲན་སྐུལ་བྱེད་སྲིད། - + OK button - གཏན་ཁེལ། + གཏན་ཁེལ། @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY ཉིན་གང་། @@ -637,59 +635,95 @@ CSettingDialog - + Sunday - གཟའ་ཉི་མ། + གཟའ་ཉི་མ། - + Monday - གཟའ་ཟླ་བ། + གཟའ་ཟླ་བ། + + + Tuesday + - + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock - + ཆུ་ཚོད་24ཡི་ལུགས། - + 12-hour clock - + ཆུ་ཚོད་12ཀྱི་ལུགས། + + + + import ICS file + ICSཡིག་ཆ་ནང་འདྲེན། - + Manual - + ལག་ཐབས། - + 15 mins - + སྐར་མ་15རེ། - + 30 mins - + སྐར་མ་30རེ། - + 1 hour - + ཆུ་ཚོད་1རེ། - + 24 hours - + ཆུ་ཚོད་24རེ། - + Sync Now - + ལམ་སེང་མཉམ་བགྲོད། - + Last sync - + ཉེ་དུས་ཀྱི་མཉམ་བགྲོད་དུས་ཚོད། + + + + Please go to the <a href='/'>Control Center</a> to change system settings + @@ -697,17 +731,17 @@ (%1 mins) - + (%1སྐར་མ།) (%1 hour) - + (%1ཆུ་ཚོད།) (%1 hours) - + (%1ཆུ་ཚོད།) @@ -736,7 +770,7 @@ Search events and festivals - + ཉིན་རེའི་ལས་རིམ་དང་དུས་ཆེན་འཚོལ་ཞིབ། @@ -744,48 +778,48 @@ Sun - + ཉི་མ། Mon - + ཟླ་བ། Tue - + མིག་དམར། Wed - + ལྷག་པ། Thu - + ཕུར་བུ། Fri - + པ་སངས། Sat - + སྤེན་པ། CWeekWindow - + Week གཟའ་འཁོར། - + Y ལོ། @@ -807,7 +841,7 @@ CYearWindow - + Y ལོ། @@ -815,12 +849,12 @@ CalendarWindow - + Calendar ལོ་ཐོ། - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. ལོ་ཐོ་ནི་ཚེས་གྲངས་བལྟ་བ་དང་ལས་རིམ་དོ་དམ་བྱེད་པའི་ཡོ་བྱད་ཆུང་ཆུང་ཞིག་རེད། @@ -828,34 +862,34 @@ Calendarmainwindow - + Calendar ལོ་ཐོ། - + Manage - + དོ་དམ། - + Privacy Policy - + གསང་དོན་སྲིད་ཇུས། - + Syncing... - + མཉམ་བགྲོད་བྱེད་བཞིན་པ། - + Sync successful - + མཉམ་བགྲོད་ལེགས་གྲུབ། - + Sync failed, please try later - + མཉམ་བགྲོད་བྱེད་མ་ཐུབ་པས། ཏོག་ཙམ་ནས་ཡང་བསྐྱར་ཚོད་ལྟ་བྱོས། @@ -869,85 +903,64 @@ DAccountDataBase - Work - ལས་ཀ + ལས་ཀ - Life - འཆོ་བ། + འཆོ་བ། - Other - གཞན་དག + གཞན་དག DAlarmManager - - - - Close button - + ཁ་རྒྱག - One day before start - + ཉིན་1སྔོན་ལ་དྲན་སྐུལ་བྱེད་པ། - Remind me tomorrow - + སང་ཉིན་དྲན་སྐུལ་བྱེད། - Remind me later - + གཏོགས་ཙམ་ནས་དྲན་སྐུལ་བྱེད། - 15 mins later - + སྐར་མ་15རྗེས། - 1 hour later - + ཆུ་ཚོད་1རྗེས། - 4 hours later - + ཆུ་ཚོད་4རྗེས། - - - Tomorrow - + སང་ཉིན། - Schedule Reminder - + ཉིན་རེའི་ལས་རིམ་དྲན་སྐུལ། - - %1 to %2 - + %1 ནས་ %2བར། - - Today - དེ་རིང་། + དེ་རིང་། @@ -976,98 +989,108 @@ JobTypeListView - + + export + ཕྱིར་འདྲེན། + + + + import ICS file + ICSཡིག་ཆ་ནང་འདྲེན། + + + You are deleting an event type. - + ཁྱོད་ཀྱིས་ཉིན་རེའི་ལས་རིམ་སུབ་བཞིན་ཡོད། - + All events under this type will be deleted and cannot be recovered. - + ཉིན་རེའི་ལས་རིམ་འདིའི་འོག་གི་ཉིན་རེའི་ལས་རིམ་ཚང་མ་སུབ་ངེས་པ་མ་ཟད་སླར་གསོ་བྱ་ཐབས་མེད། - + Cancel button - ཕྱིར་འཐེན། + འདོར་བ། - + Delete button - སུབ་པ། + སུབ་པ། QObject - + + + Manage calendar + ལོ་ཐོ་དོ་དམ། + + + + + Event types + ཉིན་རེའི་ལས་རིམ་རིགས་གྲས། + + + Account settings - + རྩིས་ཐོ་སྒྲིག་འགོད། - + Account - + རྩིས་ཁྲ། - + Select items to be synced - + ཁྱེད་ཀྱི་མཉམ་བགྲོད་ཚན་པ་སྒྲིག་འགོད། - + Events - + ཉིན་རེའི་ལས་རིམ། - - + + General settings - + ཀུན་སྤྱོད་སྒྲིག་འགོད། - + Sync interval - + མཉམ་བགྲོད་བྱུང་ཚད། - - - Manage calendar - - - - + Calendar account - + ལོ་ཐོའི་རྩིས་ཁྲ། - - - Event types - - - - + General - + ཀུན་སྤྱོད། - + First day of week - + གཟའ་འཁོར་གཅིག་གི་ཉིན་དང་པོ། - + Time - + ཐོ་འཇུག་པའི་དུས་ཚོད། Return - + Today Return དེ་རིང་། @@ -1078,7 +1101,7 @@ - + Today Return Today དེ་རིང་། @@ -1087,46 +1110,57 @@ ScheduleTypeEditDlg - + + New event type - + གསར་སྣོན་ཉིན་རེའི་ལས་རིམ་རིགས། - + Edit event type - + ཉིན་རེའི་ལས་རིམ་རིགས་གྲས་རྩོམ་སྒྲིག + + + + Import ICS file + ICSཡིག་ཆ་ནང་འདྲེན། - + Name: - + མིང་། - + Color: - + ཚོན་མདོག + + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> ཡིག་ཆ། - + Cancel button - ཕྱིར་འཐེན། + འདོར་བ། - + Save button - ཉར་གསོག་ + ཉར་གསོག་ The name can not only contain whitespaces - + མིང་ཚང་མ་སྟོང་པ་ཡིན་མི་རུང་བས། བཟོ་བཅོས་བྱེད་རོགས། - + Enter a name please - + མིང་སྟོང་པ་ཡིན་མི་རུང་། @@ -1172,12 +1206,12 @@ Y - ལོ། + ལོ། M - ཟླ། + ཟླ། @@ -1186,7 +1220,7 @@ Go button - + མཆོང་སྒྱུར། @@ -1195,19 +1229,19 @@ Sign In button - + ཐོ་འཇུག Sign Out button - + ཐོ་འབུད། YearFrame - + Y ལོ། @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today དེ་རིང་། - + \ No newline at end of file diff --git a/translations/dde-calendar_ca.ts b/translations/dde-calendar_ca.ts index 99562e28..63913753 100644 --- a/translations/dde-calendar_ca.ts +++ b/translations/dde-calendar_ca.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Compte local - + Event types - Tipus d'esdeveniment + Tipus d'esdeveniment @@ -121,7 +119,7 @@ CGraphicsView - + New Event Esdeveniment nou @@ -137,12 +135,12 @@ CMonthView - + New event Nou esdeveniment - + New Event Esdeveniment nou @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Esdeveniment nou - + Edit Event Edita l'esdeveniment - + End time must be greater than start time L'hora d'acabament ha de ser superior a l'hora d'inici. - + OK button D'acord - - - - - - + + + + + + Never Mai - + At time of event Al moment de l'esdeveniment - + 15 minutes before 15 minuts abans - + 30 minutes before 30 minuts abans - + 1 hour before 1 hora abans - - + + 1 day before 1 dia abans - - + + 2 days before 2 dies abans - - + + 1 week before 1 setmana abans - + On start day (9:00 AM) El dia d'inici (9:00) - - - + + + time(s) cop/s - + Enter a name please Escriviu un nom, si us plau. - + The name can not only contain whitespaces El nom no només pot contenir espais en blanc. - - + + Type: Tipus: - - + + Description: Descripció: - - + + All Day: Tot el dia: - - + + Starts: Comença: - - + + Ends: Acaba: - - + + Remind Me: Recorda-m'ho: - - + + Repeat: Repeteix: - - + + End Repeat: Acaba la repetició: - + Calendar account: Compte del calendari: - + Calendar account Compte del calendari - + Type Tipus - + Description Descripció - + All Day Tot el dia - + Time: Hora: - + Time Hora - + Solar solar - + Lunar lunar - + Starts Comença - + Ends Acaba - + Remind Me Recorda-m'ho - + Repeat Repeteix - - + + Daily Diàriament - - + + Weekdays Els dies feiners - - + + Weekly Setmanalment - - - + + + Monthly Mensualment - - - + + + Yearly Anualment - + End Repeat Acaba la repetició - + After Després - + On Activat - + Cancel button Cancel·la - + Save button Desa @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Totes les ocurrències d'un esdeveniment repetitiu han de tenir el mateix estat de tot el dia. - - + + Do you want to change all occurrences? Voleu canviar-ne totes les ocurrències? - - - - - - - + + + + + + + Cancel button Cancel·la - - + + Change All Canvia-les totes - + You are changing the repeating rule of this event. Canvieu la regla de repetició d'aquest esdeveniment. - - - + + + You are deleting an event. Elimineu un esdeveniment. - + Are you sure you want to delete this event? Segur que voleu eliminar aquest esdeveniment? - + Delete button Elimina - + Do you want to delete all occurrences of this event, or only the selected occurrence? Voleu eliminar totes les ocurrències d'aquest esdeveniment o només la seleccionada? - + Delete All Elimina-les totes - - + + Delete Only This Event Elimina només aquest esdeveniment - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Voleu eliminar aquesta i totes les ocurrències futures d'aquest esdeveniment o només la seleccionada? - + Delete All Future Events Elimina tots els esdeveniments futurs - - + + You are changing a repeating event. Canvieu un esdeveniment repetitiu. - + Do you want to change only this occurrence of the event, or all occurrences? Voleu canviar només aquesta ocurrència de l'esdeveniment o totes? - + All Totes - - + + Only This Event Només aquest esdeveniment - + Do you want to change only this occurrence of the event, or this and all future occurrences? Voleu canviar només aquesta ocurrència de l'esdeveniment, o aquesta i totes les ocurrències futures? - + All Future Events Tots els esdeveniments futurs - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Heu seleccionat un mes de traspàs i se us recordarà segons les regles del calendari lunar. - + OK button D'acord @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY TOT EL DIA @@ -637,60 +635,96 @@ CSettingDialog - + Sunday Diumenge - + Monday Dilluns - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock Rellotge de 24 hores - + 12-hour clock Rellotge de 12 hores - + + import ICS file + importa un fitxer ICS + + + Manual Manual - + 15 mins 15 min - + 30 mins 30 min - + 1 hour 1 hora - + 24 hours 24 hores - + Sync Now Sincronitza ara - + Last sync Darrera sincronització + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -780,12 +814,12 @@ CWeekWindow - + Week Setmana - + Y any @@ -807,7 +841,7 @@ CYearWindow - + Y any @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Calendari - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. El Calendari és una eina per veure dates i també un planificador diari intel·ligent per programar totes les coses de la vida. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Calendari - + Manage Gestiona - + Privacy Policy Política de privadesa - + Syncing... Se sincronitza... - + Sync successful Sincronització correcta - + Sync failed, please try later La sincronització ha fallat. Si us plau, proveu-ho més tard. @@ -869,85 +903,64 @@ DAccountDataBase - Work - + Feina - Life - + Vida - Other - + Altres DAlarmManager - - - - Close button - + Tanca - One day before start - + Un dia abans de l'inici - Remind me tomorrow - + Recorda-m'ho demà. - Remind me later - + Recorda-m'ho més tard. - 15 mins later - + 15 minuts més tard - 1 hour later - + 1 hora més tard - 4 hours later - + 4 hores més tard - - - Tomorrow - + Demà - Schedule Reminder - + Programació del recrdatori - - %1 to %2 - + de %1 a %2 - - Today - Avui + Avui @@ -976,23 +989,33 @@ JobTypeListView - + + export + exporta + + + + import ICS file + Importa un fitxer ICS + + + You are deleting an event type. Elimineu un tipus d'esdeveniment. - + All events under this type will be deleted and cannot be recovered. Tots els esdeveniments d'aquest tipus s'eliminaran i no es podran recuperar. - + Cancel button Cancel·la - + Delete button Elimina @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Gestiona el calendari - - + + Event types Tipus d'esdeveniment - + Account settings Paràmetres del compte - + Account Compte - + Select items to be synced Seleccioneu els elements per sincronitzar - + Events Esdeveniments - - + + General settings Configuració general - + Sync interval Interval de sincronització - + Calendar account Compte del calendari - + General General - + First day of week Primer dia de la setmana - + Time Hora @@ -1067,7 +1090,7 @@ Return - + Today Return Avui @@ -1078,7 +1101,7 @@ - + Today Return Today Avui @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Tipus d'esdeveniment nou - + Edit event type Edita el tipus d'esdeveniment - + + Import ICS file + Importa un fitxer ICS + + + Name: Nom: - + Color: Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + Fitxer <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a>: + + + Cancel button Cancel·la - + Save button Desa-ho @@ -1124,7 +1158,7 @@ El nom no només pot contenir espais en blanc. - + Enter a name please Escriviu un nom, si us plau. @@ -1207,7 +1241,7 @@ YearFrame - + Y any @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Avui - + \ No newline at end of file diff --git a/translations/dde-calendar_cs.ts b/translations/dde-calendar_cs.ts index 718f864c..282d0f0c 100644 --- a/translations/dde-calendar_cs.ts +++ b/translations/dde-calendar_cs.ts @@ -34,7 +34,7 @@ Event types - Typy událostí + Typy událostí @@ -137,12 +137,12 @@ CMonthView - + New event Nová událost - + New Event Nová událost @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY CELÝ DEN @@ -637,60 +637,95 @@ CSettingDialog - + Sunday neděle - + Monday pondělí - + + Tuesday + úterý + + + + Wednesday + středa + + + + Thursday + čtvrtek + + + + Friday + pátek + + + + Saturday + sobota + + + 24-hour clock 24 hodinové hodiny - + 12-hour clock 12 hodinové hodiny - + + import ICS file + naimportovat ICS soubor + + + Manual Příručka - + 15 mins 15 minut - + 30 mins 30 minut - + 1 hour 1 hodina - + 24 hours 24 hodin - + Sync Now Seřídit nyní - + Last sync Naposledy synchronizováno + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -807,7 +842,7 @@ CYearWindow - + Y R @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Kalendář - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Kalendář slouží k zobrazování datumů a také jako chytrý každodenní plánovač všeho v životě. @@ -871,17 +906,17 @@ Work - + Práce Life - + Soukromé Other - + Ostatní @@ -893,61 +928,61 @@ Close button - + Zavřít One day before start - + Jeden den před začátkem Remind me tomorrow - + Připomenout zítra Remind me later - + Připomenout později 15 mins later - + o 15 minut později 1 hour later - + o 1 hodinu později 4 hours later - + o 4 hodiny později Tomorrow - + Zítra Schedule Reminder - + Připomínání naplánovaného %1 to %2 - + %1 až %2 Today - Dnes + Dnes @@ -976,23 +1011,33 @@ JobTypeListView - + + export + export + + + + import ICS file + naimportovat ICS soubor + + + You are deleting an event type. Mažete typ události. - + All events under this type will be deleted and cannot be recovered. Všechny události tohoto typu budou smazány a nelze je obnovit. - + Cancel button Zrušit - + Delete button Smazat @@ -1001,65 +1046,65 @@ QObject - - + + Manage calendar Spravovat kalendář - - + + Event types Typy událostí - + Account settings Nastavení účtu - + Account Účet - + Select items to be synced Vyberte položky, které mají být synchronizovány - + Events Události - - + + General settings Obecná nastavení - + Sync interval Seřizovací interval - + Calendar account Kalendářový účet - + General Obecné - + First day of week První den týdne - + Time Čas @@ -1067,7 +1112,7 @@ Return - + Today Return Dnes @@ -1087,33 +1132,44 @@ ScheduleTypeEditDlg - + + New event type Nový typ události - + Edit event type Upravit typ události - + + Import ICS file + Naimportovat ICS soubor + + + Name: Název: - + Color: Barva: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> soubor: + + + Cancel button Zrušit - + Save button Uložit @@ -1124,7 +1180,7 @@ Název nemůže obsahovat pouze mezery - + Enter a name please Zadejte, prosím, název @@ -1207,7 +1263,7 @@ YearFrame - + Y R @@ -1221,8 +1277,8 @@ - - + + Today Today Dnes diff --git a/translations/dde-calendar_da.ts b/translations/dde-calendar_da.ts index 87c13bae..437c3755 100644 --- a/translations/dde-calendar_da.ts +++ b/translations/dde-calendar_da.ts @@ -11,7 +11,7 @@ Network error - + Netværksfejl @@ -42,19 +42,19 @@ Color - + Farve Cancel button - Annuller + Afbryd Save button - Gem + Gem @@ -137,12 +137,12 @@ CMonthView - + New event Ny begivenhed - + New Event Ny begivenhed @@ -267,6 +267,14 @@ On start day (9:00 AM) På starten af dagen (9:00) + + + + + + time(s) + gang(e) + Enter a name please @@ -358,7 +366,7 @@ Time - + Klokkeslæt @@ -437,14 +445,6 @@ On Til - - - - - - time(s) - gang(e) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? Vil du ændre alle forekomster? + + + + + + + + + Cancel + button + Annuller + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Er du sikker på, at du vil slette begivenheden? - - - - - - - - - Cancel - button - Annuller - Delete @@ -579,7 +579,7 @@ OK button - OK + OK @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY HELE DAGEN @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - Søndag + Søndag - + Monday - Mandag + Mandag + + + + Tuesday + Tirsdag + + + + Wednesday + Onsdag - + + Thursday + Torsdag + + + + Friday + Fredag + + + + Saturday + Lørdag + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + Manuel + + + 15 mins - + 30 mins - + 1 hour - + 1 time - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + Søn Mon - + Man Tue - + Tir Wed - + Ons Thu - + Tor Fri - + Fre Sat - + Lør @@ -807,7 +842,7 @@ CYearWindow - + Y Å @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Kalender - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Kalender er et værktøj til at vise datoer, og er også en smart dagsplanlægger til alt i dit liv. @@ -840,12 +875,12 @@ Privacy Policy - + Privatlivspolitik Syncing... - + Synkroniserer... @@ -871,17 +906,17 @@ Work - Arbejde + Arbejde Life - Leve + Leve Other - Andre + Andre @@ -893,22 +928,22 @@ Close button - + Luk One day before start - + En dag før start Remind me tomorrow - + Påmind mig i morgen Remind me later - + Påmind mig senere @@ -930,12 +965,12 @@ Tomorrow - + I morgen Schedule Reminder - + Planlæg påmindelse @@ -947,7 +982,7 @@ Today - I dag + I dag @@ -976,98 +1011,108 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Annuller + Afbryd - + Delete button - Slet + Slet QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + Konto + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + Generelt - + First day of week - + Time - + Klokkeslæt Return - + Today Return I dag @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - - Name: + + Import ICS file - + + Name: + Navn: + + + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - Annuller + Afbryd - + Save button - Gem + Gem @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - Å + Å M - M + M @@ -1186,7 +1242,7 @@ Go button - + @@ -1195,19 +1251,19 @@ Sign In button - + Log ind Sign Out button - + Log ud YearFrame - + Y Å @@ -1221,8 +1277,8 @@ - - + + Today Today I dag diff --git a/translations/dde-calendar_de.ts b/translations/dde-calendar_de.ts index 67cedf86..b824e8d2 100644 --- a/translations/dde-calendar_de.ts +++ b/translations/dde-calendar_de.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Lokales Konto - + Event types - Termintypen + Termintypen @@ -121,7 +119,7 @@ CGraphicsView - + New Event Neuer Termin @@ -137,12 +135,12 @@ CMonthView - + New event Neuer Termin - + New Event Neuer Termin @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Neuer Termin - + Edit Event Termin bearbeiten - + End time must be greater than start time Endzeit muss größer als Startzeit sein - + OK button OK - - - - - - + + + + + + Never Nie - + At time of event Zum Zeitpunkt des Termins - + 15 minutes before 15 Minuten vorher - + 30 minutes before 30 Minuten vorher - + 1 hour before 1 Stunde vorher - - + + 1 day before 1 Tag vorher - - + + 2 days before 2 Tage vorher - - + + 1 week before 1 Woche vorher - + On start day (9:00 AM) Am Starttag (9:00 Uhr) - - - + + + time(s) mal - + Enter a name please Bitte einen Namen eingeben - + The name can not only contain whitespaces Der Name darf nicht nur Leerzeichen enthalten - - + + Type: Typ: - - + + Description: Beschreibung: - - + + All Day: Ganztägig: - - + + Starts: Beginnt: - - + + Ends: Endet: - - + + Remind Me: Erinnere mich: - - + + Repeat: Wiederholung: - - + + End Repeat: Wiederholung beenden: - + Calendar account: Kalenderkonto: - + Calendar account Kalenderkonto - + Type Typ - + Description Beschreibung - + All Day Ganztägig - + Time: Zeit: - + Time Zeit - + Solar Solar - + Lunar Lunar - + Starts Beginnt - + Ends Endet - + Remind Me Erinnere mich - + Repeat Wiederholung - - + + Daily Täglich - - + + Weekdays Wochentage - - + + Weekly Wöchentlich - - - + + + Monthly Monatlich - - - + + + Yearly Jährlich - + End Repeat Wiederholung beenden - + After Nach - + On Am - + Cancel button Abbrechen - + Save button Speichern @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Alle Vorkommen eines sich wiederholenden Termins müssen den gleichen Ganztagsstatus haben. - - + + Do you want to change all occurrences? Möchten Sie alle Vorkommen ändern? - - - - - - - + + + + + + + Cancel button Abbrechen - - + + Change All Alle ändern - + You are changing the repeating rule of this event. Sie ändern die Wiederholungsregel dieses Termins. - - - + + + You are deleting an event. Sie löschen einen Termin. - + Are you sure you want to delete this event? Sind Sie sicher, dass Sie diesen Termin löschen möchten? - + Delete button Löschen - + Do you want to delete all occurrences of this event, or only the selected occurrence? Möchten Sie alle Vorkommen dieses Termins löschen oder nur das ausgewählte Vorkommen? - + Delete All Alle löschen - - + + Delete Only This Event Nur diesen Termin löschen - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Möchten Sie diesen und alle zukünftigen Vorkommen dieses Termins löschen, oder nur das ausgewählte Vorkommen? - + Delete All Future Events Alle zukünftigen Termine löschen - - + + You are changing a repeating event. Sie ändern einen sich wiederholenden Termin. - + Do you want to change only this occurrence of the event, or all occurrences? Möchten Sie nur dieses Vorkommen des Termins oder alle Vorkommnisse ändern? - + All Alle - - + + Only This Event Nur diesen Termin - + Do you want to change only this occurrence of the event, or this and all future occurrences? Möchten Sie nur dieses Ereignis oder dieses und alle zukünftigen Ereignisse ändern? - + All Future Events Alle zukünftigen Termine - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Sie haben einen Schaltmonat ausgewählt und werden nach den Regeln des Mondkalenders daran erinnert. - + OK button OK @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY GANZTÄGIG @@ -637,60 +635,96 @@ CSettingDialog - + Sunday Sonntag - + Monday Montag - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock 24-Stunden-Uhr - + 12-hour clock 12-Stunden-Uhr - + + import ICS file + ICS-Datei importieren + + + Manual Manuell - + 15 mins 15 Minuten - + 30 mins 30 Minuten - + 1 hour 1 Stunde - + 24 hours 24 Stunden - + Sync Now Jetzt synchronisieren - + Last sync Letzte Synchronisierung + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -736,7 +770,7 @@ Search events and festivals - Suche nach Veranstaltungen und Festen + Termine und Veranstaltungen suchen @@ -780,12 +814,12 @@ CWeekWindow - + Week Woche - + Y J @@ -807,7 +841,7 @@ CYearWindow - + Y J @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Kalender - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Der Kalender ist ein Werkzeug zum Anzeigen von Terminen und auch ein intelligenter Tagesplaner, um alle Dinge im Leben zu planen. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Kalender - + Manage Verwalten - + Privacy Policy Datenschutzerklärung - + Syncing... Wird synchronisiert ... - + Sync successful Synchronisierung erfolgreich - + Sync failed, please try later Synchronisierung fehlgeschlagen, bitte später erneut versuchen @@ -869,85 +903,64 @@ DAccountDataBase - Work - + Arbeit - Life - + Leben - Other - + Andere DAlarmManager - - - - Close button - + Schließen - One day before start - + Einen Tag vor Beginn - Remind me tomorrow - + Erinnere mich morgen - Remind me later - + Erinnere mich später - 15 mins later - + 15 Min. später - 1 hour later - + 1 Stunde später - 4 hours later - + 4 Stunden später - - - Tomorrow - + Morgen - Schedule Reminder - + Terminerinnerung - - %1 to %2 - + %1 bis %2 - - Today - Heute + Heute @@ -976,23 +989,33 @@ JobTypeListView - + + export + exportieren + + + + import ICS file + ICS-Datei importieren + + + You are deleting an event type. Sie löschen einen Termintyp. - + All events under this type will be deleted and cannot be recovered. Alle Termine dieses Typs werden gelöscht und können nicht wiederhergestellt werden. - + Cancel button Abbrechen - + Delete button Löschen @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Kalender verwalten - - + + Event types Termintypen - + Account settings Kontoeinstellungen - + Account Konto - + Select items to be synced Zu synchronisierende Elemente auswählen - + Events Termine - - + + General settings Allgemeine Einstellungen - + Sync interval Synchronisierungsintervall - + Calendar account Kalenderkonto - + General Allgemein - + First day of week Erster Tag der Woche - + Time Zeit @@ -1067,7 +1090,7 @@ Return - + Today Return Heute @@ -1078,7 +1101,7 @@ - + Today Return Today Heute @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Neuer Termintyp - + Edit event type Termintyp bearbeiten - + + Import ICS file + ICS-Datei importieren + + + Name: Name: - + Color: Farbe: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a>-Datei: + + + Cancel button Abbrechen - + Save button Speichern @@ -1124,7 +1158,7 @@ Der Name darf nicht nur Leerzeichen enthalten - + Enter a name please Bitte einen Namen eingeben @@ -1207,7 +1241,7 @@ YearFrame - + Y J @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Heute - + \ No newline at end of file diff --git a/translations/dde-calendar_el.ts b/translations/dde-calendar_el.ts index c4ea3cd6..874a0bc8 100644 --- a/translations/dde-calendar_el.ts +++ b/translations/dde-calendar_el.ts @@ -6,12 +6,12 @@ Sync successful - + Επιτυχής συγχρονισμός Network error - + Σφάλμα δικτύου @@ -29,7 +29,7 @@ Local account - + Τοπικός λογαριασμός @@ -42,19 +42,19 @@ Color - + Χρώμα Cancel button - Ακύρωση + Ακύρωση Save button - Αποθήκευση + Αποθήκευση @@ -137,12 +137,12 @@ CMonthView - + New event Νέο συμβάν - + New Event Νέο Συμβάν @@ -186,7 +186,7 @@ New event type - + Νέος τύπος συμβάντος @@ -267,6 +267,14 @@ On start day (9:00 AM) Στην έναρξη της ημέρας (9:00 ΠΜ) + + + + + + time(s) + φορά(ές) + Enter a name please @@ -275,7 +283,7 @@ The name can not only contain whitespaces - + Το όνομα δεν μπορρεί να περιέχει μόνο κενούς χαρακτήρες @@ -328,12 +336,12 @@ Calendar account: - + Λογαριασμός ημερολογίου: Calendar account - + Λογαριασμός ημερολογίου @@ -353,12 +361,12 @@ Time: - + Ώρα: Time - + Ώρα @@ -437,14 +445,6 @@ On Ενεργό - - - - - - time(s) - φορά(ές) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? Θέλετε να αλλάξετε όλες τις εμφανίσεις; + + + + + + + + + Cancel + button + Ακύρωση + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Είστε σίγουρος ότι θέλετε να διαγράψετε αυτό το συμβάν; - - - - - - - - - Cancel - button - Ακύρωση - Delete @@ -579,7 +579,7 @@ OK button - + ΟΚ @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY ΟΛΟΗΜΕΡΟ @@ -637,58 +637,93 @@ CSettingDialog - + Sunday - Κυριακή + Κυριακή - + Monday - Δευτέρα + Δευτέρα + + + + Tuesday + Τρίτη - + + Wednesday + Τετάρτη + + + + Thursday + Πέμπτη + + + + Friday + Παρασκευή + + + + Saturday + Σάββατο + + + 24-hour clock - + 24-ωρο ρολόι - + 12-hour clock + 12-ωρο ρολόι + + + + import ICS file - + Manual - + Μη αυτόματα - + 15 mins - + 15 λεπτά - + 30 mins - + 30 λεπτά - + 1 hour - + 1 ώρα - + 24 hours - + 24 ώρες - + Sync Now - + Συγχρονισμός Τώρα - + Last sync + Τελευταίος συγχρονισμός + + + + Please go to the <a href='/'>Control Center</a> to change settings @@ -697,17 +732,17 @@ (%1 mins) - + (%1 λεπτά) (%1 hour) - + (%1 ώρα) (%1 hours) - + (%1 ώρες) @@ -744,37 +779,37 @@ Sun - + Κυρ Mon - + Δευ Tue - + Τρι Wed - + Τετ Thu - + Πεμ Fri - + Παρ Sat - + Σαβ @@ -807,7 +842,7 @@ CYearWindow - + Y Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Ημερολόγιο - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Το Ημερολόγιο είναι ένα εργαλείο για να δεις ημερομηνίες, αλλα και επίσης ένας εξύπνος σχεδιαστής ημέρας για να προγραμματίσεις όλα τα πράγματα στην ζωή. @@ -835,22 +870,22 @@ Manage - + Διαχείρηση Privacy Policy - + Πολιτική Απορρήτου Syncing... - + Συγχρονισμός... Sync successful - + Επιτυχής συγχρονισμός @@ -871,17 +906,17 @@ Work - Εργασία + Εργασία Life - Ζωή + Ζωή Other - Άλλο + Άλλο @@ -893,61 +928,61 @@ Close button - + Κλείσιμο One day before start - + Μια ημέρα πριν την εκκίνηση Remind me tomorrow - + Υπενθύμισέ μου αύριο Remind me later - + Υπεθύμισέ μου αργότερα 15 mins later - + 15 λεπτά αργότερα 1 hour later - + 1 ώρα αργότερα 4 hours later - + 4 ώρες αργότερα Tomorrow - + Αύριο Schedule Reminder - + Προγραμματισμός Υπενθύμισης %1 to %2 - + %1 εως %2 Today - Σήμερα + Σήμερα @@ -976,98 +1011,108 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Ακύρωση + Ακύρωση - + Delete button - Διαγραφή + Διαγραφή QObject - - Account settings + + + Manage calendar + + + + + + Event types + Account settings + Ρυθμίσεις λογαριασμού + + + Account - + Λογαριασμός - + Select items to be synced - + Events - + Συμβάντα - - + + General settings - + Γενικές ρυθμίσεις - + Sync interval - - - Manage calendar - - - - + Calendar account - - - - - - Event types - + Λογαριασμός ημερολογίου - + General - + Γενικά - + First day of week - + Πρώτη ημέρα της εβδομάδας - + Time - + Ώρα Return - + Today Return Σήμερα @@ -1087,44 +1132,55 @@ ScheduleTypeEditDlg - + + New event type - + Νέος τύπος συμβάντος - + Edit event type - - Name: + + Import ICS file - + + Name: + Όνομα: + + + Color: + Χρώμα: + + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: - + Cancel button - Ακύρωση + Ακύρωση - + Save button - Αποθήκευση + Αποθήκευση The name can not only contain whitespaces - + Το όνομα δεν μπορρεί να περιέχει μόνο κενούς χαρακτήρες - + Enter a name please @@ -1172,12 +1228,12 @@ Y - + Ε M - Μ + Μ @@ -1195,19 +1251,19 @@ Sign In button - + Σύνδεση Sign Out button - + Έξοδος YearFrame - + Y Y @@ -1221,8 +1277,8 @@ - - + + Today Today Σήμερα diff --git a/translations/dde-calendar_en.ts b/translations/dde-calendar_en.ts index df76288f..aaffa305 100644 --- a/translations/dde-calendar_en.ts +++ b/translations/dde-calendar_en.ts @@ -137,12 +137,12 @@ CMonthView - + New event New event - + New Event New Event @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY ALL DAY @@ -637,60 +637,95 @@ CSettingDialog - + Sunday Sunday - + Monday Monday - + + Tuesday + Tuesday + + + + Wednesday + Wednesday + + + + Thursday + Thursday + + + + Friday + Friday + + + + Saturday + Saturday + + + 24-hour clock 24-hour clock - + 12-hour clock 12-hour clock - + + import ICS file + + + + Manual Manual - + 15 mins 15 mins - + 30 mins 30 mins - + 1 hour 1 hour - + 24 hours 24 hours - + Sync Now Sync Now - + Last sync Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -807,7 +842,7 @@ CYearWindow - + Y Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Calendar - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. @@ -976,23 +1011,33 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. All events under this type will be deleted and cannot be recovered. - + Cancel button Cancel - + Delete button Delete @@ -1001,65 +1046,65 @@ QObject - - + + Manage calendar Manage calendar - - + + Event types Event types - + Account settings Account settings - + Account Account - + Select items to be synced Select items to be synced - + Events Events - - + + General settings General settings - + Sync interval Sync interval - + Calendar account Calendar account - + General General - + First day of week First day of week - + Time Time @@ -1067,7 +1112,7 @@ Return - + Today Return Today @@ -1087,33 +1132,44 @@ ScheduleTypeEditDlg - + + New event type New event type - + Edit event type Edit event type - + + Import ICS file + + + + Name: Name: - + Color: Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button Cancel - + Save button Save @@ -1124,7 +1180,7 @@ The name can not only contain whitespaces - + Enter a name please Enter a name please @@ -1207,7 +1263,7 @@ YearFrame - + Y Y @@ -1221,8 +1277,8 @@ - - + + Today Today Today diff --git a/translations/dde-calendar_en_AU.ts b/translations/dde-calendar_en_AU.ts index cdcb156d..97437ed8 100644 --- a/translations/dde-calendar_en_AU.ts +++ b/translations/dde-calendar_en_AU.ts @@ -48,13 +48,13 @@ Cancel button - Cancel + Cancel Save button - Save + Save @@ -137,12 +137,12 @@ CMonthView - + New event New event - + New Event New Event @@ -267,6 +267,14 @@ On start day (9:00 AM) On start day (9:00 AM) + + + + + + time(s) + time(s) + Enter a name please @@ -437,14 +445,6 @@ On On - - - - - - time(s) - time(s) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? Do you want to change all occurrences? + + + + + + + + + Cancel + button + Cancel + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Are you sure you want to delete this event? - - - - - - - - - Cancel - button - Cancel - Delete @@ -579,7 +579,7 @@ OK button - OK + OK @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY ALL DAY @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - Sunday + Sunday - + Monday - Monday + Monday + + + + Tuesday + Tuesday + + + + Wednesday + Wednesday - + + Thursday + Thursday + + + + Friday + Friday + + + + Saturday + Saturday + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + Manual + + + 15 mins - + 30 mins - + 1 hour - + 1 hour - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + Sun Mon - + Mon Tue - + Tue Wed - + Wed Thu - + Thu Fri - + Fri Sat - + Sat @@ -807,7 +842,7 @@ CYearWindow - + Y Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Calendar - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. @@ -840,12 +875,12 @@ Privacy Policy - + Privacy Policy Syncing... - + Syncing... @@ -871,17 +906,17 @@ Work - Work + Work Life - Life + Life Other - Other + Other @@ -893,22 +928,22 @@ Close button - + Close One day before start - + One day before start Remind me tomorrow - + Remind me tomorrow Remind me later - + Remind me later @@ -930,12 +965,12 @@ Tomorrow - + Tomorrow Schedule Reminder - + Schedule Reminder @@ -947,7 +982,7 @@ Today - Today + Today @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Cancel + Cancel - + Delete button - Delete + Delete QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + Account + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + General - + First day of week - + Time @@ -1067,7 +1112,7 @@ Return - + Today Return Today @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - + + Import ICS file + + + + Name: - + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - Cancel + Cancel - + Save button - Save + Save @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - Y + Y M - M + M @@ -1195,19 +1251,19 @@ Sign In button - + Sign In Sign Out button - + Sign Out YearFrame - + Y Y @@ -1221,8 +1277,8 @@ - - + + Today Today Today diff --git a/translations/dde-calendar_en_GB.ts b/translations/dde-calendar_en_GB.ts index 6c95eb0f..5f640f53 100644 --- a/translations/dde-calendar_en_GB.ts +++ b/translations/dde-calendar_en_GB.ts @@ -48,13 +48,13 @@ Cancel button - Cancel + Cancel Save button - Save + Save @@ -137,12 +137,12 @@ CMonthView - + New event New event - + New Event New Event @@ -267,6 +267,14 @@ On start day (9:00 AM) On start day (9:00 AM) + + + + + + time(s) + time(s) + Enter a name please @@ -437,14 +445,6 @@ On On - - - - - - time(s) - time(s) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? Do you want to change all occurrences? + + + + + + + + + Cancel + button + Cancel + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Are you sure you want to delete this event? - - - - - - - - - Cancel - button - Cancel - Delete @@ -579,7 +579,7 @@ OK button - OK + OK @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY ALL DAY @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - Sunday + Sunday - + Monday - Monday + Monday + + + + Tuesday + Tuesday + + + + Wednesday + Wednesday - + + Thursday + Thursday + + + + Friday + Friday + + + + Saturday + Saturday + + + 24-hour clock - + 12-hour clock - + + import ICS file + + + + Manual - + 15 mins - + 30 mins - + 1 hour - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -807,7 +842,7 @@ CYearWindow - + Y Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Calendar - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. @@ -871,17 +906,17 @@ Work - Work + Work Life - Life + Life Other - Other + Other @@ -947,7 +982,7 @@ Today - Today + Today @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Cancel + Cancel - + Delete button - Delete + Delete QObject - - Account settings + + + Manage calendar + + + + + + Event types + Account settings + + + + Account - + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + First day of week - + Time @@ -1067,7 +1112,7 @@ Return - + Today Return Today @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - + + Import ICS file + + + + Name: - + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - Cancel + Cancel - + Save button - Save + Save @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - Y + Y M - M + M @@ -1207,7 +1263,7 @@ YearFrame - + Y Y @@ -1221,8 +1277,8 @@ - - + + Today Today Today diff --git a/translations/dde-calendar_en_US.ts b/translations/dde-calendar_en_US.ts index c1f6aed7..99dfb06f 100644 --- a/translations/dde-calendar_en_US.ts +++ b/translations/dde-calendar_en_US.ts @@ -4,22 +4,22 @@ AccountItem - + Sync successful Sync successful - + Network error Network error - + Server exception Server exception - + Storage full Storage full @@ -27,14 +27,14 @@ AccountManager - + Local account Local account - + Event types - Event types + Event types @@ -121,7 +121,7 @@ CGraphicsView - + New Event New Event @@ -192,267 +192,267 @@ CScheduleDlg - - - + + + New Event New Event - + Edit Event Edit Event - + End time must be greater than start time End time must be greater than start time - + OK button OK - - - - - - + + + + + + Never Never - + At time of event At time of event - + 15 minutes before 15 minutes before - + 30 minutes before 30 minutes before - + 1 hour before 1 hour before - - + + 1 day before 1 day before - - + + 2 days before 2 days before - - + + 1 week before 1 week before - + On start day (9:00 AM) On start day (9:00 AM) - - - + + + time(s) time(s) - + Enter a name please Enter a name please - + The name can not only contain whitespaces The name can not only contain whitespaces - - + + Type: Type: - - + + Description: Description: - - + + All Day: All Day: - - + + Starts: Starts: - - + + Ends: Ends: - - + + Remind Me: Remind Me: - - + + Repeat: Repeat: - - + + End Repeat: End Repeat: - + Calendar account: Calendar account: - + Calendar account Calendar account - + Type Type - + Description Description - + All Day All Day - + Time: Time: - + Time Time - + Solar Solar - + Lunar Lunar - + Starts Starts - + Ends Ends - + Remind Me Remind Me - + Repeat Repeat - - + + Daily Daily - - + + Weekdays Weekdays - - + + Weekly Weekly - - - + + + Monthly Monthly - - - + + + Yearly Yearly - + End Repeat End Repeat - + After After - + On On - + Cancel button Cancel - + Save button Save @@ -461,122 +461,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. All occurrences of a repeating event must have the same all-day status. - - + + Do you want to change all occurrences? Do you want to change all occurrences? - - - - - - - + + + + + + + Cancel button Cancel - - + + Change All Change All - + You are changing the repeating rule of this event. You are changing the repeating rule of this event. - - - + + + You are deleting an event. You are deleting an event. - + Are you sure you want to delete this event? Are you sure you want to delete this event? - + Delete button Delete - + Do you want to delete all occurrences of this event, or only the selected occurrence? Do you want to delete all occurrences of this event, or only the selected occurrence? - + Delete All Delete All - - + + Delete Only This Event Delete Only This Event - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Do you want to delete this and all future occurrences of this event, or only the selected occurrence? - + Delete All Future Events Delete All Future Events - - + + You are changing a repeating event. You are changing a repeating event. - + Do you want to change only this occurrence of the event, or all occurrences? Do you want to change only this occurrence of the event, or all occurrences? - + All All - - + + Only This Event Only This Event - + Do you want to change only this occurrence of the event, or this and all future occurrences? Do you want to change only this occurrence of the event, or this and all future occurrences? - + All Future Events All Future Events - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + OK button OK @@ -637,65 +637,96 @@ CSettingDialog - + Sunday Sunday - + Monday Monday - + Tuesday + Tuesday + + + Wednesday + Wednesday + + + Thursday + Thursday + + + Friday + Friday + + + Saturday + Saturday + + + + + Use System Setting + + + + 24-hour clock 24-hour clock - + 12-hour clock 12-hour clock - + import ICS file - + Manual Manual - + 15 mins 15 mins - + 30 mins 30 mins - + 1 hour 1 hour - + 24 hours 24 hours - + Sync Now Sync Now - + Last sync Last sync + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -785,12 +816,12 @@ CWeekWindow - + Week Week - + Y Y @@ -820,12 +851,12 @@ CalendarWindow - + Calendar Calendar - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. @@ -833,32 +864,32 @@ Calendarmainwindow - + Calendar Calendar - + Manage Manage - + Privacy Policy Privacy Policy - + Syncing... Syncing... - + Sync successful Sync successful - + Sync failed, please try later Sync failed, please try later @@ -871,11 +902,67 @@ All Day + + DAccountDataBase + + Work + Work + + + Life + Life + + + Other + Other + + DAlarmManager + + Close + button + Close + + + One day before start + One day before start + + + Remind me tomorrow + Remind me tomorrow + + + Remind me later + Remind me later + + + 15 mins later + 15 mins later + + + 1 hour later + 1 hour later + + + 4 hours later + 4 hours later + + + Tomorrow + Tomorrow + + + Schedule Reminder + Schedule Reminder + + + %1 to %2 + %1 to %2 + Today - Today + Today @@ -904,28 +991,33 @@ JobTypeListView - + export - + + import ICS file + + + + You are deleting an event type. You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. All events under this type will be deleted and cannot be recovered. - + Cancel button Cancel - + Delete button Delete @@ -934,65 +1026,65 @@ QObject - - + + Manage calendar Manage calendar - - + + Event types Event types - + Account settings Account settings - + Account Account - + Select items to be synced Select items to be synced - + Events Events - - + + General settings General settings - + Sync interval Sync interval - + Calendar account Calendar account - + General General - + First day of week First day of week - + Time Time @@ -1011,7 +1103,7 @@ - + Today Return Today Today @@ -1163,8 +1255,8 @@ - - + + Today diff --git a/translations/dde-calendar_es.ts b/translations/dde-calendar_es.ts index d8c848af..334df7ef 100644 --- a/translations/dde-calendar_es.ts +++ b/translations/dde-calendar_es.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Cuenta local - + Event types - Tipos de eventos + Tipos de eventos @@ -121,7 +119,7 @@ CGraphicsView - + New Event Nuevo evento @@ -137,12 +135,12 @@ CMonthView - + New event Nuevo evento - + New Event Nuevo evento @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Nuevo evento - + Edit Event Editar evento - + End time must be greater than start time El tiempo final debe ser mayor que el tiempo inicial - + OK button Aceptar - - - - - - + + + + + + Never Nunca - + At time of event En el momento del evento. - + 15 minutes before 15 minutos antes - + 30 minutes before 30 minutos antes - + 1 hour before 1 hora antes - - + + 1 day before 1 día antes - - + + 2 days before 2 días antes - - + + 1 week before 1 semana antes - + On start day (9:00 AM) El día de inicio (9:00 a.m.) - - - + + + time(s) hora(s) - + Enter a name please Por favor ingrese un nombre - + The name can not only contain whitespaces El nombre no puede contener espacios en blanco - - + + Type: Tipo: - - + + Description: Descripción: - - + + All Day: Todo el día: - - + + Starts: Inicia: - - + + Ends: Termina: - - + + Remind Me: Recordarme: - - + + Repeat: Repetir: - - + + End Repeat: Fin de repetición: - + Calendar account: Cuenta de calendario: - + Calendar account Cuenta de calendario - + Type Tipo - + Description Descripción - + All Day Todo el día - + Time: Tiempo: - + Time Tiempo - + Solar Solar - + Lunar Lunar - + Starts Inicia - + Ends Termina - + Remind Me Recordarme - + Repeat Repetir - - + + Daily Diariamente - - + + Weekdays Días laborables - - + + Weekly Semanalmente - - - + + + Monthly Mensualmente - - - + + + Yearly Anualmente - + End Repeat Fin de repetición - + After Después - + On Encendido - + Cancel button Cancelar - + Save button Guardar @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Todas las instancias de un evento repetido debe tener el mismo estado todo el día. - - + + Do you want to change all occurrences? ¿Desea cambiar todas las instancias? - - - - - - - + + + + + + + Cancel button Cancelar - - + + Change All Cambiar todos - + You are changing the repeating rule of this event. Está cambiando la regla de repetición de este evento. - - - + + + You are deleting an event. Esta borrando un evento - + Are you sure you want to delete this event? ¿Está seguro que desea borrar este evento? - + Delete button Borrar - + Do you want to delete all occurrences of this event, or only the selected occurrence? ¿Desea borrar todas las instancias de este evento, o solo la instancia seleccionada? - + Delete All Eliminar todo - - + + Delete Only This Event Borrar solo este evento - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? ¿Desea eliminar este y todas las instancias futuras de este evento, o solo la instancia seleccionada? - + Delete All Future Events Borrar todos los eventos futuros - - + + You are changing a repeating event. Esta cambiando una repetición de un evento. - + Do you want to change only this occurrence of the event, or all occurrences? ¿Desea cambiar solo la instancia de este evento, o todas las instancias? - + All Todos - - + + Only This Event Solo este evento - + Do you want to change only this occurrence of the event, or this and all future occurrences? ¿Desea cambiar solo este acontecimiento del evento, o este y todos los acontecimientos futuros? - + All Future Events Todos los eventos futuros - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Ha seleccionado un mes bisiesto y se le recordará de acuerdo con las reglas del calendario lunar. - + OK button Aceptar @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY EVENTOS @@ -637,60 +635,96 @@ CSettingDialog - + Sunday Domingo - + Monday Lunes - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock Reloj de 24 horas - + 12-hour clock Reloj de 12 horas - + + import ICS file + Importar archivo ICS + + + Manual Manual - + 15 mins 15 minutos - + 30 mins 30 minutos - + 1 hour 1 hora - + 24 hours 24 horas - + Sync Now Sincronizar ahora - + Last sync Ultima sincronizacion + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -780,12 +814,12 @@ CWeekWindow - + Week Semana - + Y A @@ -807,7 +841,7 @@ CYearWindow - + Y A @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Calendario - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Calendario de Deepin es una herramienta para consultar fechas, y un conveniente planificador para agendar sus reuniones y eventos. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Calendario - + Manage - Gestionar + Ajustes - + Privacy Policy Política de privacidad - + Syncing... Sincronizando… - + Sync successful Sincronización exitosa - + Sync failed, please try later La sincronización falló, intentelo más tarde @@ -869,85 +903,64 @@ DAccountDataBase - Work - + Trabajo - Life - + Vida - Other - + Otro DAlarmManager - - - - Close button - + Cerrar - One day before start - + El día anterior al evento - Remind me tomorrow - + Recuérdame mañana - Remind me later - + Recuérdame luego - 15 mins later - + 15 minutos después - 1 hour later - + 1 hora después - 4 hours later - + 4 horas después - - - Tomorrow - + Mañana - Schedule Reminder - + Programar Recordatorio - - %1 to %2 - + %1 a %2 - - Today - Hoy + Hoy @@ -976,23 +989,33 @@ JobTypeListView - + + export + Exportar + + + + import ICS file + Importar archivo ICS + + + You are deleting an event type. Está eliminando un tipo de evento. - + All events under this type will be deleted and cannot be recovered. Todos los eventos de este tipo se eliminarán y no se podrán recuperar. - + Cancel button Cancelar - + Delete button Eliminar @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Administrar calendario - - + + Event types Tipos de eventos - + Account settings Ajustes de la cuenta - + Account Cuenta - + Select items to be synced Seleccionar elementos a sincronizar - + Events Eventos - - + + General settings Ajustes generales - + Sync interval Intervalo de sincronización - + Calendar account Cuenta de calendario - + General General - + First day of week Primer día de la semana - + Time Tiempo @@ -1067,7 +1090,7 @@ Return - + Today Return Hoy @@ -1078,7 +1101,7 @@ - + Today Return Today Hoy @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Nuevo tipo de evento - + Edit event type Editar tipo de evento - + + Import ICS file + Importar archivo ICS + + + Name: Nombre: - + Color: Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a>Archivo: + + + Cancel button Cancelar - + Save button Guardar @@ -1124,7 +1158,7 @@ El nombre no puede contener espacios en blanco - + Enter a name please Por favor ingrese un nombre @@ -1207,7 +1241,7 @@ YearFrame - + Y A @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Hoy - + \ No newline at end of file diff --git a/translations/dde-calendar_fi.ts b/translations/dde-calendar_fi.ts index 7bce670a..02baeae6 100644 --- a/translations/dde-calendar_fi.ts +++ b/translations/dde-calendar_fi.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Paikallinen tili - + Event types - Tapahtumatyypit + Tapahtumatyypit @@ -121,7 +119,7 @@ CGraphicsView - + New Event Uusi tapahtuma @@ -137,12 +135,12 @@ CMonthView - + New event Uusi tapahtuma - + New Event Uusi tapahtuma @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Uusi tapahtuma - + Edit Event Muokkaa tapahtumaa - + End time must be greater than start time Lopetusajan on oltava pidempi kuin aloitusaika - + OK button OK - - - - - - + + + + + + Never Ei koskaan - + At time of event Tapahtuman aikaan - + 15 minutes before 15 min ennen - + 30 minutes before 30 min ennen - + 1 hour before 1 tunti ennen - - + + 1 day before 1 päivä ennen - - + + 2 days before 2 päivää ennen - - + + 1 week before 1 viikko ennen - + On start day (9:00 AM) Aloituspäivänä (9:00) - - - + + + time(s) kertaa - + Enter a name please Anna nimi - + The name can not only contain whitespaces Nimi ei voi sisältää vain välilyöntejä - - + + Type: Tyyppi: - - + + Description: Kuvaus: - - + + All Day: Koko päivä: - - + + Starts: Alkaa: - - + + Ends: Loppuu: - - + + Remind Me: Muistuta minua: - - + + Repeat: Toista: - - + + End Repeat: Lopeta toisto: - + Calendar account: Kalenteritili: - + Calendar account Kalenteritili - + Type Tyyppi - + Description Kuvaus - + All Day Koko päivä - + Time: Aika: - + Time Aika - + Solar Aurinko - + Lunar Kuu - + Starts Alkaa - + Ends Loppuu - + Remind Me Muistuta minua - + Repeat Toista - - + + Daily Päivittäin - - + + Weekdays Arkisin - - + + Weekly Viikoittain - - - + + + Monthly Kuukausittain - - - + + + Yearly Vuosittain - + End Repeat Lopeta toisto - + After Jälkeen - + On Päällä - + Cancel button Peruuta - + Save button Tallenna @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Kaikilla toistuvilla tapahtumilla on oltava sama koko päivän tila. - - + + Do you want to change all occurrences? Haluatko muuttaa kaikkia tapahtumia? - - - - - - - + + + + + + + Cancel button Peruuta - - + + Change All Vaihda kaikki - + You are changing the repeating rule of this event. Olet muuttamassa tämän tapahtuman toistuvaa sääntöä. - - - + + + You are deleting an event. Olet poistamassa tapahtumaa. - + Are you sure you want to delete this event? Haluatko varmasti poistaa tämän tapahtuman? - + Delete button Poista - + Do you want to delete all occurrences of this event, or only the selected occurrence? Haluatko poistaa kaikki tämän tapahtuman esiintymät vai vain valitun tapahtuman? - + Delete All Poista kaikki - - + + Delete Only This Event Poista vain tämä tapahtuma - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Haluatko poistaa tämän ja kaikki tämän tapahtuman tulevat esiintymät vai vain valitun tapahtuman? - + Delete All Future Events Poista kaikki tulevat tapahtumat - - + + You are changing a repeating event. Olet vaihtamassa toistuvaa tapahtumaa. - + Do you want to change only this occurrence of the event, or all occurrences? Haluatko muuttaa vain tämän tapahtuman vai kaikki tapahtumat? - + All Kaikki - - + + Only This Event Vain tämä tapahtuma - + Do you want to change only this occurrence of the event, or this and all future occurrences? Haluatko muuttaa vain tämän tapahtuman vai tätä ja kaikkia tulevia tapahtumia? - + All Future Events Kaikki tulevat tapahtumat - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Olet valinnut karkauskuukauden ja sinua muistutetaan kuukalenterin sääntöjen mukaisesti. - + OK button OK @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY AIKA @@ -637,60 +635,96 @@ CSettingDialog - + Sunday Sunnuntai - + Monday Maanantai - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock 24h kello - + 12-hour clock 12h kello - + + import ICS file + tuo ICS kalenteri + + + Manual Manuaalinen - + 15 mins 15 min - + 30 mins 30 min - + 1 hour 1 tunti - + 24 hours 24 tuntia - + Sync Now Synkronoi nyt - + Last sync Viimeisin synkronointi + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -780,12 +814,12 @@ CWeekWindow - + Week Viikko - + Y V @@ -807,7 +841,7 @@ CYearWindow - + Y V @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Kalenteri - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Kalenteri on työkalu almanakan tarkasteluun ja voit myös tehdä hälytykset ja muistutukset kalenteriin. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Kalenteri - + Manage Hallitse - + Privacy Policy Tietosuojakäytäntö - + Syncing... Synkronoidaan... - + Sync successful Synkronointi onnistui - + Sync failed, please try later Synkronointi epäonnistui, yritä myöhemmin @@ -869,85 +903,64 @@ DAccountDataBase - Work - + Työ - Life - + Oma - Other - + Muu DAlarmManager - - - - Close button - + Sulje - One day before start - + Päivä ennen alkua - Remind me tomorrow - + Muistuta huomenna - Remind me later - + Muistuta myöhemmin - 15 mins later - + 15 min myöhemmin - 1 hour later - + 1 tunnin kuluttua - 4 hours later - + 4 tunnin kuluttua - - - Tomorrow - + Huomenna - Schedule Reminder - + Ajasta muistutus - - %1 to %2 - + %1 - %2 - - Today - Tänään + Tänään @@ -976,23 +989,33 @@ JobTypeListView - + + export + vie + + + + import ICS file + tuo ICS kalenteri + + + You are deleting an event type. Olet poistamassa tapahtumatyyppiä. - + All events under this type will be deleted and cannot be recovered. Kaikki tämän tyypin tapahtumat poistetaan, eikä niitä voi palauttaa. - + Cancel button Peruuta - + Delete button Poista @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Hallitse kalenteria - - + + Event types Tapahtumatyypit - + Account settings Tilin asetukset - + Account Tili - + Select items to be synced Valitse synkronoitavat kohteet - + Events Tapahtumat - - + + General settings Yleiset asetukset - + Sync interval Synkronointiväli - + Calendar account Kalenteritili - + General Yleinen - + First day of week Viikon ensimmäinen päivä - + Time Aika @@ -1067,7 +1090,7 @@ Return - + Today Return Tänään @@ -1078,7 +1101,7 @@ - + Today Return Today Tänään @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Uusi tapahtuman tyyppi - + Edit event type Muokkaa tapahtuman tyyppiä - + + Import ICS file + tuo ICS kalenteri + + + Name: Nimi: - + Color: Väri: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> kalenteri: + + + Cancel button Peruuta - + Save button Tallenna @@ -1124,7 +1158,7 @@ Nimi ei voi sisältää vain välilyöntejä - + Enter a name please Anna nimi @@ -1207,7 +1241,7 @@ YearFrame - + Y V @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Tänään - + \ No newline at end of file diff --git a/translations/dde-calendar_fr.ts b/translations/dde-calendar_fr.ts index 9e4b9d17..bf53f674 100644 --- a/translations/dde-calendar_fr.ts +++ b/translations/dde-calendar_fr.ts @@ -29,12 +29,12 @@ Local account - + Compte local Event types - Type d'événement + Type d'événement @@ -137,12 +137,12 @@ CMonthView - + New event Nouvel événement - + New Event Nouvel événement @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY TOUTE LA JOURNÉE @@ -637,67 +637,102 @@ CSettingDialog - + Sunday Dimanche - + Monday Lundi - + + Tuesday + Mardi + + + + Wednesday + Mercredi + + + + Thursday + Jeudi + + + + Friday + Vendredi + + + + Saturday + Samedi + + + 24-hour clock Horloge 24 heures - + 12-hour clock horloge 12 heures - + + import ICS file + + + + Manual Manuel - + 15 mins - 15 minutes + 15 min - + 30 mins 30 min - + 1 hour 1 heure - + 24 hours 24 heures - + Sync Now Synchroniser maintenant - + Last sync Dernière synchronisation + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit (%1 mins) - (%1 minutes) + (%1 min) @@ -707,7 +742,7 @@ (%1 hours) - (%1 heure) + (%1 heures) @@ -807,7 +842,7 @@ CYearWindow - + Y A @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Calendrier - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Le calendrier est un outil pour afficher les dates, et aussi un planificateur quotidien intelligent pour planifier toutes les choses de la vie. @@ -835,7 +870,7 @@ Manage - Faire en sorte + Gérer @@ -871,17 +906,17 @@ Work - + Travail Life - + Vie Other - + Autre @@ -893,61 +928,61 @@ Close button - + Fermer One day before start - + Un jour avant le début Remind me tomorrow - + Rappel demain Remind me later - + Rappeler plus tard 15 mins later - + 15 minutes plus tard 1 hour later - + 1 heure plus tard 4 hours later - + 4 heures plus tard Tomorrow - + Demain Schedule Reminder - + Rappel de programme %1 to %2 - + %1 à %2 Today - Aujourd'hui + Aujourd'hui @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - Vous supprimez un type d'événement. + Vous êtes en train de supprimer un type d'événement. - + All events under this type will be deleted and cannot be recovered. Tous les événements de ce type seront supprimés et ne pourront pas être récupérés. - + Cancel button Annuler - + Delete button - Effacer + Supprimer QObject - - + + Manage calendar Gérer le calendrier - - + + Event types Type d'événement - + Account settings Paramètres du compte - + Account Compte - + Select items to be synced - Sélectionner les éléments à synchroniser + Sélectionnez les éléments à synchroniser - + Events Événements - - + + General settings Paramètres généraux - + Sync interval Intervalle de synchronisation - + Calendar account Compte de calendrier - + General Général - + First day of week Premier jour de la semaine - + Time Temps @@ -1067,7 +1112,7 @@ Return - + Today Return Aujourd'hui @@ -1087,33 +1132,44 @@ ScheduleTypeEditDlg - + + New event type Nouveau type d'événement - + Edit event type Éditer le type d'événement - + + Import ICS file + + + + Name: Nom : - + Color: Couleur : - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button Annuler - + Save button Sauvegarder @@ -1124,7 +1180,7 @@ Le nom ne peut pas contenir que des espaces blancs - + Enter a name please Entrez un nom s'il vous plait @@ -1207,7 +1263,7 @@ YearFrame - + Y A @@ -1221,8 +1277,8 @@ - - + + Today Today Aujourd'hui diff --git a/translations/dde-calendar_gl_ES.ts b/translations/dde-calendar_gl_ES.ts index 2472f2b3..7e273319 100644 --- a/translations/dde-calendar_gl_ES.ts +++ b/translations/dde-calendar_gl_ES.ts @@ -42,19 +42,19 @@ Color - + Cor Cancel button - Cancelar + Cancelar Save button - Gardar + Gardar @@ -137,12 +137,12 @@ CMonthView - + New event Novo evento - + New Event Novo evento @@ -267,6 +267,14 @@ On start day (9:00 AM) Ao comezo do día (9:00 AM) + + + + + + time(s) + vez(ces) + Enter a name please @@ -437,14 +445,6 @@ On O - - - - - - time(s) - vez(ces) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? Queres cambiar todas as ocorrencias? + + + + + + + + + Cancel + button + Cancelar + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Tes a certeza de querer eliminar este evento? - - - - - - - - - Cancel - button - Cancelar - Delete @@ -579,7 +579,7 @@ OK button - Aceptar + Aceptar @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY TODO O DÍA @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - Domingo + Domingo - + Monday - Luns + Luns + + + + Tuesday + Martes - + + Wednesday + Mércores + + + + Thursday + Xoves + + + + Friday + Venres + + + + Saturday + Sábado + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + Manual + + + 15 mins - + 30 mins - + 1 hour - + 1 hora - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + Dom Mon - + Lun Tue - + Mar Wed - + Mér Thu - + Xov Fri - + Ven Sat - + Sáb @@ -807,7 +842,7 @@ CYearWindow - + Y Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Calendario - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. O calendario é unha ferramenta para ver as datas e tamén un planificador diario intelixente para programar todas as cousas da vida. @@ -840,12 +875,12 @@ Privacy Policy - + Política de privacidade Syncing... - + Sincronizando... @@ -871,17 +906,17 @@ Work - Traballo + Traballo Life - Persoal + Persoal Other - Outro + Outros @@ -893,22 +928,22 @@ Close button - + Pechar One day before start - + Un día antes do comezo Remind me tomorrow - + Lembrarme mañá Remind me later - + Lembrarme máis tarde @@ -930,24 +965,24 @@ Tomorrow - + Mañá Schedule Reminder - + Programar recordatorio %1 to %2 - + %1 a %2 Today - Hoxe + Hoxe @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Cancelar + Cancelar - + Delete button - Eliminar + Eliminar QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + Conta + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + Xeral - + First day of week - + Time @@ -1067,7 +1112,7 @@ Return - + Today Return Hoxe @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - - Name: + + Import ICS file - + + Name: + Nome: + + + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - Cancelar + Cancelar - + Save button - Gardar + Gardar @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - Y + Y M - M + M @@ -1195,19 +1251,19 @@ Sign In button - + Iniciar sesión Sign Out button - + Pechar sesión YearFrame - + Y Y @@ -1221,8 +1277,8 @@ - - + + Today Today Hoxe diff --git a/translations/dde-calendar_hr.ts b/translations/dde-calendar_hr.ts index fd7692dd..058bd8c3 100644 --- a/translations/dde-calendar_hr.ts +++ b/translations/dde-calendar_hr.ts @@ -11,7 +11,7 @@ Network error - + Mrežna greška @@ -42,19 +42,19 @@ Color - + Boja Cancel button - Otkaži + Otkaži Save button - Spremi + Spremi @@ -137,12 +137,12 @@ CMonthView - + New event Novi događaj - + New Event Novi događaj @@ -267,15 +267,23 @@ On start day (9:00 AM) Na dan početka (9:00 AM) + + + + + + time(s) + + Enter a name please - + Molim unesite ime The name can not only contain whitespaces - + Ime ne može sadržavati samo razmake @@ -353,12 +361,12 @@ Time: - + Vrijeme: Time - + Vrijeme @@ -437,14 +445,6 @@ On Uključeno - - - - - - time(s) - - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? + + + + + + + + + Cancel + button + Otkaži + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Jeste li sigurni da želite izbrisati ovaj događaj? - - - - - - - - - Cancel - button - Otkaži - Delete @@ -579,7 +579,7 @@ OK button - U redu + U redu @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY CIJELI DAN @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - Nedjelja + Nedjelja - + Monday - Ponedjeljak + Ponedjeljak + + + + Tuesday + Utorak + + + + Wednesday + Srijeda + + + + Thursday + Četvrtak + + + + Friday + Petak + + + + Saturday + Subota - + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + Ručno + + + 15 mins - + 30 mins - + 1 hour - + 1 sat - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + Ned Mon - + Pon Tue - + Uto Wed - + Sri Thu - + Čet Fri - + Pet Sat - + Sub @@ -807,7 +842,7 @@ CYearWindow - + Y Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Kalendar - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. @@ -871,17 +906,17 @@ Work - Posao + Posao Life - Život + Život Other - Ostalo + Ostalo @@ -893,61 +928,61 @@ Close button - + Zatvori One day before start - + Jedan dan prije početka Remind me tomorrow - + Podsjeti me sutra Remind me later - + Podsjeti me kasnije 15 mins later - + 15 minuta kasnije 1 hour later - + 1 sat kasnije 4 hours later - + 4 sata kasnije Tomorrow - + Sutra Schedule Reminder - + Podsjetnik rasporeda %1 to %2 - + %1 do %2 Today - Danas + Danas @@ -976,98 +1011,108 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Otkaži + Otkaži - + Delete button - Obriši + Obriši QObject - - Account settings + + + Manage calendar + Upravljaj kalendarom + + + + + Event types - Account + Account settings - + + Account + Račun + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + Općenito - + First day of week - + Time - + Vrijeme Return - + Today Return Danas @@ -1087,46 +1132,57 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - - Name: + + Import ICS file - + + Name: + Ime: + + + Color: + Boja: + + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: - + Cancel button - Otkaži + Otkaži - + Save button - Spremi + Spremi The name can not only contain whitespaces - + Ime ne može sadržavati samo razmake - + Enter a name please - + Molim unesite ime @@ -1172,12 +1228,12 @@ Y - Y + Y M - M + M @@ -1195,19 +1251,19 @@ Sign In button - + Prijava Sign Out button - + Odjava YearFrame - + Y Y @@ -1221,8 +1277,8 @@ - - + + Today Today Danas diff --git a/translations/dde-calendar_hu.ts b/translations/dde-calendar_hu.ts index 0c360701..203af6c1 100644 --- a/translations/dde-calendar_hu.ts +++ b/translations/dde-calendar_hu.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Helyi fiók - + Event types - Esemény típusok + Esemény típusok @@ -100,17 +98,17 @@ Y - Éves + Év M - Havi + Hónap D - Napi + Nap @@ -121,7 +119,7 @@ CGraphicsView - + New Event Új esemény @@ -137,12 +135,12 @@ CMonthView - + New event Új esemény - + New Event Új esemény @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Új esemény - + Edit Event Esemény szerkesztése - + End time must be greater than start time - A befejezés időpontjának a kezdés időpontjánál későbbre kell esnie + A befejezés időpontja csak a kezdés időpontja után lehetséges - + OK button OK - - - - - - + + + + + + Never Soha - + At time of event Az esemény időpontjában - + 15 minutes before 15 perccel előtte - + 30 minutes before 30 perccel előtte - + 1 hour before 1 órával előtte - - + + 1 day before 1 nappal előtte - - + + 2 days before 2 nappal előtte - - + + 1 week before 1 héttel előtte - + On start day (9:00 AM) Esemény kezdete napján (De. 09:00) - - - + + + time(s) Időpont(ok) - + Enter a name please Kérjük adjon meg egy nevet - + The name can not only contain whitespaces A név nem tartalmazhat csak szóközöket - - + + Type: Típus: - - + + Description: Leírás: - - + + All Day: Egész nap: - - + + Starts: Kezdés: - - + + Ends: Befejezés: - - + + Remind Me: Emlékeztessen: - - + + Repeat: Ismétlés: - - + + End Repeat: Ismétlés vége: - + Calendar account: Naptár fiók: - + Calendar account Naptár fiók - + Type Típus - + Description Leírás - + All Day Egész nap - + Time: Idő: - + Time Idő - + Solar Nap - + Lunar Hold - + Starts Kezdés - + Ends Befejezés - + Remind Me Emlékeztessen - + Repeat Ismétlés - - + + Daily Naponta - - + + Weekdays Hétköznapokon - - + + Weekly Hetente - - - + + + Monthly Havonta - - - + + + Yearly Évente - + End Repeat Ismétlés vége - + After Utána - + On Ekkor - + Cancel button Mégsem - + Save button Mentés @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Az ismétlődő események valamennyiének "egész nap" állapotúnak kell lennie. - - + + Do you want to change all occurrences? Minden alkalmat módosítani szeretne? - - - - - - - + + + + + + + Cancel button Mégsem - - + + Change All Összes módosítása - + You are changing the repeating rule of this event. Módosítja az esemény ismétlődési szabályát. - - - + + + You are deleting an event. Ön töröl egy eseményt. - + Are you sure you want to delete this event? Biztosan törli ezt az eseményt? - + Delete button Törlés - + Do you want to delete all occurrences of this event, or only the selected occurrence? Törlöni szeretné az esemény összes előfordulását, vagy csak a kiválasztott eseményt? - + Delete All Összes törlése - - + + Delete Only This Event Csak ezen esemény törlése - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Törölni szeretné ezt, és az esemény összes jövőbeli előfordulását, vagy csak a kiválasztott eseményt? - + Delete All Future Events Összes jövőbeli esemény törlése - - + + You are changing a repeating event. Ön egy ismétlődő eseményt módosít. - + Do you want to change only this occurrence of the event, or all occurrences? Csak az esemény ezen előfordulását akarja megváltoztatni, vagy az összes jövőbeni eseményt? - + All Összes - - + + Only This Event Csak ezen esemény - + Do you want to change only this occurrence of the event, or this and all future occurrences? Csak az esemény ezen előfordulását akarja megváltoztatni, vagy ezt és az összes jövőbeni eseményt? - + All Future Events Összes jövőbeli esemény - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Szökőhónap lett kiválasztva, ezért a holdnaptár szabályai fognak érvényesülni. - + OK button OK @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY Egész nap @@ -637,60 +635,96 @@ CSettingDialog - + Sunday Vasárnap - + Monday Hétfő - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock 24 órás óra formátum - + 12-hour clock 12 órás óra formátum - + + import ICS file + ICS fájl importálása + + + Manual Manuális - + 15 mins 15 perc - + 30 mins 30 perc - + 1 hour 1 óra - + 24 hours 24 óra - + Sync Now Szinkronizálás most - + Last sync Utolsó szinkronizálás + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -715,12 +749,12 @@ Y - Év + Éves M - + Havi @@ -730,7 +764,7 @@ D - Nap + Napi @@ -780,12 +814,12 @@ CWeekWindow - + Week Hét - + Y Év @@ -807,7 +841,7 @@ CYearWindow - + Y Év @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Naptár - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. A Naptár egy eszköz a dátumok megtekintésére, valamint egy intelligens napi tervező az élet minden dolgának ütemezéséhez. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Naptár - + Manage Kezelés - + Privacy Policy Adatvédelmi irányelvek - + Syncing... Szinkronizálás... - + Sync successful A szinkronizálás sikeres - + Sync failed, please try later A szinkronizálás sikertelen, kérjük próbálja később @@ -869,85 +903,64 @@ DAccountDataBase - Work - + Munka - Life - + Magánélet - Other - + Egyéb DAlarmManager - - - - Close button - + Bezárás - One day before start - + Egy nappal kezdés előtt - Remind me tomorrow - + Emlékeztessen holnap - Remind me later - + Emlékeztessen később - 15 mins later - + 15 perc múlva - 1 hour later - + 1 óra múlva - 4 hours later - + 4 óra múlva - - - Tomorrow - + Holnap - Schedule Reminder - + Ütemezési emlékeztető - - %1 to %2 - + %1-től %2-ig - - Today - Ma + Ma @@ -976,23 +989,33 @@ JobTypeListView - + + export + Exportálás + + + + import ICS file + ICS fájl importálása + + + You are deleting an event type. Ön töröl egy eseménytípust. - + All events under this type will be deleted and cannot be recovered. Az összes ilyen típusú esemény törlődik, és nem állítható helyre. - + Cancel button Mégsem - + Delete button Törlés @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Naptár kezelése - - + + Event types Esemény típusok - + Account settings Felhasználói fiók beállítások - + Account Felhasználói fiók - + Select items to be synced Válassza ki a szinkronizálni kívánt elemeket - + Events Események - - + + General settings Általános beállítások - + Sync interval Szinkronizálási időintervallum - + Calendar account Naptár fiók - + General Általános - + First day of week A hét első napja - + Time Idő @@ -1067,7 +1090,7 @@ Return - + Today Return Ma @@ -1078,7 +1101,7 @@ - + Today Return Today Ma @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Új esemény típusa - + Edit event type Eseménytípus szerkesztése - + + Import ICS file + ICS fájl importálása + + + Name: Név: - + Color: Szín: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> Fájl: + + + Cancel button Mégsem - + Save button Mentés @@ -1124,7 +1158,7 @@ A név nem tartalmazhat csak szóközöket - + Enter a name please Kérjük adjon meg egy nevet @@ -1172,12 +1206,12 @@ Y - Éves + Év M - Havi + Hónap @@ -1207,7 +1241,7 @@ YearFrame - + Y Év @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Ma - + \ No newline at end of file diff --git a/translations/dde-calendar_it.ts b/translations/dde-calendar_it.ts index 2cbaf843..0d2be6a0 100644 --- a/translations/dde-calendar_it.ts +++ b/translations/dde-calendar_it.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Account locale - + Event types - Tipi di evento + Tipi di evento @@ -121,7 +119,7 @@ CGraphicsView - + New Event Nuovo evento @@ -137,12 +135,12 @@ CMonthView - + New event Nuovo evento - + New Event Nuovo evento @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Nuovo evento - + Edit Event Modifica evento - + End time must be greater than start time La data di fine deve essere maggiore di quella di inizio - + OK button OK - - - - - - + + + + + + Never Mai - + At time of event All'ora dell'evento - + 15 minutes before 15 minuti prima - + 30 minutes before 30 minuti prima - + 1 hour before 1 ora prima - - + + 1 day before 1 giorno prima - - + + 2 days before 2 giorni prima - - + + 1 week before 1 settimana prima - + On start day (9:00 AM) All'inizio della giornata (9:00 AM) - - - + + + time(s) volta(e) - + Enter a name please Inserisci un nome - + The name can not only contain whitespaces Il nome non può contenere solo spazi bianchi - - + + Type: Tipo: - - + + Description: Descrizione: - - + + All Day: Tutto il giorno: - - + + Starts: Inizio: - - + + Ends: Fine: - - + + Remind Me: Promemoria: - - + + Repeat: Ripetizione: - - + + End Repeat: Fine ripetizione: - + Calendar account: Account calendario: - + Calendar account Account calendario - + Type Tipo - + Description Descrizione - + All Day Tutto il giorno - + Time: Ora: - + Time Ora - + Solar Solare - + Lunar Lunare - + Starts Inizio - + Ends Fine - + Remind Me Promemoria - + Repeat Ripetizione - - + + Daily Giornaliera - - + + Weekdays Giorni della settimana - - + + Weekly Settimanale - - - + + + Monthly Mensile - - - + + + Yearly Annuale - + End Repeat Fine ripetizione - + After Dopo - + On Acceso - + Cancel button Annulla - + Save button Salva @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Tutte le occorrenze di una ripetizione devono avere i medesimi parametri. - - + + Do you want to change all occurrences? Desideri modificare tutte le occorrenze? - - - - - - - + + + + + + + Cancel button Annulla - - + + Change All Cambia tutte - + You are changing the repeating rule of this event. Stai cambiando le regole di pianificazione di questo evento. - - - + + + You are deleting an event. Stai eliminando un evento. - + Are you sure you want to delete this event? Sicuro di voler eliminare questo evento? - + Delete button Elimina - + Do you want to delete all occurrences of this event, or only the selected occurrence? Desideri eliminare tutte le occorrenze di questo evento, oppure solo quella selezionata? - + Delete All Eliminale tutte - - + + Delete Only This Event Elimina solo questo evento - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Desideri eliminare questa e tutte le occorrenze successive di questo evento, oppure solo quella selezionata? - + Delete All Future Events Tutte le occorrenze future - - + + You are changing a repeating event. Stai modificando un evento ripetitivo - + Do you want to change only this occurrence of the event, or all occurrences? Desideri modificare solo questa occorrenza dell'evento, o tutte quelle ad esso associate? - + All Tutti - - + + Only This Event Solo questo evento - + Do you want to change only this occurrence of the event, or this and all future occurrences? Desideri modificare solo il singolo evento,oppure tutte le future ripetizioni? - + All Future Events Tutte le future ripetizioni - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Hai selezionato un mese bisestile e ti verrà ricordato secondo le regole del calendario lunare. - + OK button OK @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY Tutto il giorno @@ -637,60 +635,96 @@ CSettingDialog - + Sunday Domenica - + Monday Lunedì - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock Orologio 24 ore - + 12-hour clock Orologio 12 ore - + + import ICS file + Importa file ICS + + + Manual Manuale - + 15 mins 15 minuti - + 30 mins 30 minuti - + 1 hour 1 ora - + 24 hours 24 ore - + Sync Now Sincronizza ora - + Last sync Ultima sincronizzazione + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -780,12 +814,12 @@ CWeekWindow - + Week Settimana - + Y Y @@ -807,7 +841,7 @@ CYearWindow - + Y Y @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Calendario - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Calendario è uno strumento per visualizzare il calendario ma anche per pianificare in modo intelligente tutti gli eventi della propria vita quotidiana. Localizzazione italiana a cura di Massimo A. Carofano. @@ -829,32 +863,32 @@ Localizzazione italiana a cura di Massimo A. Carofano. Calendarmainwindow - + Calendar Calendario - + Manage Gestisci - + Privacy Policy Privacy Policy - + Syncing... Sincronizzazione... - + Sync successful Sincronizzazione riuscita - + Sync failed, please try later Sincronizzazione fallita, riprova più tardi @@ -870,85 +904,64 @@ Localizzazione italiana a cura di Massimo A. Carofano. DAccountDataBase - Work - + Lavoro - Life - + Personale - Other - + Altro DAlarmManager - - - - Close button - + Chiudi - One day before start - + Un giorno prima di iniziare - Remind me tomorrow - + Ricordamelo domani - Remind me later - + Ricordamelo piu tardi - 15 mins later - + Dopo 15 minuti - 1 hour later - + Dopo 1 ora - 4 hours later - + Dopo 4 ore - - - Tomorrow - + Domani - Schedule Reminder - + Pianifica promemoria - - %1 to %2 - + %1 a %2 - - Today - Oggi + Oggi @@ -977,23 +990,33 @@ Localizzazione italiana a cura di Massimo A. Carofano. JobTypeListView - + + export + esporta + + + + import ICS file + Importa file ICS + + + You are deleting an event type. Stai eliminando un tipo di evento. - + All events under this type will be deleted and cannot be recovered. Tutti gli eventi di questo tipo verranno eliminati e non potranno essere recuperati. - + Cancel button Annulla - + Delete button Elimina @@ -1002,65 +1025,65 @@ Localizzazione italiana a cura di Massimo A. Carofano. QObject - - + + Manage calendar Gestisci calendario - - + + Event types Tipi di evento - + Account settings Impostazioni account - + Account Account - + Select items to be synced Seleziona elementi da sincronizzare - + Events Eventi - - + + General settings Impostazioni generali - + Sync interval Intervallo di sincronizzazione - + Calendar account Account calendario - + General Generale - + First day of week Primo giorno della settimana - + Time Ora @@ -1068,7 +1091,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Return - + Today Return Oggi @@ -1079,7 +1102,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. - + Today Return Today Oggi @@ -1088,33 +1111,44 @@ Localizzazione italiana a cura di Massimo A. Carofano. ScheduleTypeEditDlg - + + New event type Nuovo tipo di evento - + Edit event type Modifica tipo di evento - + + Import ICS file + Importa file ICS + + + Name: Nome: - + Color: Colore: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + File <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> : + + + Cancel button Annulla - + Save button Salva @@ -1125,7 +1159,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. Il nome non può contenere solo spazi bianchi - + Enter a name please Inserisci un nome @@ -1208,7 +1242,7 @@ Localizzazione italiana a cura di Massimo A. Carofano. YearFrame - + Y Y @@ -1220,13 +1254,13 @@ Localizzazione italiana a cura di Massimo A. Carofano. - - - - + + + + Today Today Oggi - + \ No newline at end of file diff --git a/translations/dde-calendar_ja.ts b/translations/dde-calendar_ja.ts index 77660960..ed390c7b 100644 --- a/translations/dde-calendar_ja.ts +++ b/translations/dde-calendar_ja.ts @@ -42,19 +42,19 @@ Color - + Cancel button - キャンセル + キャンセル Save button - 保存 + 保存 @@ -137,12 +137,12 @@ CMonthView - + New event 新規イベント - + New Event 新規イベント @@ -267,6 +267,14 @@ On start day (9:00 AM) 開始日 (9:00) に + + + + + + time(s) + 回後 + Enter a name please @@ -358,7 +366,7 @@ Time - + タイム @@ -437,14 +445,6 @@ On オン - - - - - - time(s) - 回後 - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? + + + + + + + + + Cancel + button + キャンセル + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? イベントを削除してもよろしいですか? - - - - - - - - - Cancel - button - キャンセル - Delete @@ -579,7 +579,7 @@ OK button - OK + OK @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY 終日 @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - 日曜日 + 日曜日 - + Monday - 月曜日 + 月曜日 + + + + Tuesday + 火曜日 + + + + Wednesday + 水曜日 + + + + Thursday + 木曜日 + + + + Friday + 金曜日 - + + Saturday + 土曜日 + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + 手動 + + + 15 mins - + 30 mins - + 1 hour - + 1時間 - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + 日曜日 Mon - + Tue - + Wed - + 水曜日 Thu - + Fri - + Sat - + 土曜日 @@ -807,7 +842,7 @@ CYearWindow - + Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar カレンダー - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. カレンダーは、日付を表示するツールであり、また生活のあらゆることをスケジューリングするスマートデイリープランナーです。 @@ -840,12 +875,12 @@ Privacy Policy - + プライバシーポリシー Syncing... - + 同期しています… @@ -871,17 +906,17 @@ Work - 仕事 + 仕事 Life - 生活 + 生活 Other - その他 + その他 @@ -893,7 +928,7 @@ Close button - + 閉じる @@ -903,12 +938,12 @@ Remind me tomorrow - + 明日通知 Remind me later - + 後で通知 @@ -930,12 +965,12 @@ Tomorrow - + 明日 Schedule Reminder - + スケジュール通知 @@ -947,7 +982,7 @@ Today - 今日 + 今日 @@ -976,98 +1011,108 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - キャンセル + キャンセル - + Delete button - 削除 + 削除 QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + アカウント + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + 一般 - + First day of week - + Time - + タイム Return - + Today Return 今日 @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - + + Import ICS file + + + + Name: - + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - キャンセル + キャンセル - + Save button - 保存 + 保存 @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - + M - + @@ -1186,7 +1242,7 @@ Go button - + Go @@ -1195,19 +1251,19 @@ Sign In button - + サインイン Sign Out button - + サインアウト YearFrame - + Y @@ -1221,8 +1277,8 @@ - - + + Today Today 今日 diff --git a/translations/dde-calendar_ka.ts b/translations/dde-calendar_ka.ts index c9be9281..e8779723 100644 --- a/translations/dde-calendar_ka.ts +++ b/translations/dde-calendar_ka.ts @@ -48,13 +48,13 @@ Cancel button - გაუქმება + გაუქმება Save button - შენახვა + შენახვა @@ -137,12 +137,12 @@ CMonthView - + New event ახალი ივენთი - + New Event ახალი ივენთი @@ -267,6 +267,14 @@ On start day (9:00 AM) დრის დასაწყისში (9:00 AM) + + + + + + time(s) + ჯერ + Enter a name please @@ -437,14 +445,6 @@ On ზე - - - - - - time(s) - ჯერ - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? გსურთი მოვლენების შეცვლა? + + + + + + + + + Cancel + button + გაუქმება + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? დაწრმუნებული ხართ, რომ გსურთ ამ ივენთის წაშლა? - - - - - - - - - Cancel - button - გაუქმება - Delete @@ -579,7 +579,7 @@ OK button - OK + OK @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY ყველა დღე @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - კვირა + კვირა - + Monday - ორშაბათი + ორშაბათი - + + Tuesday + სამშაბათი + + + + Wednesday + ოთხშაბათი + + + + Thursday + ხუთშაბათი + + + + Friday + პარასკევი + + + + Saturday + შაბათი + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + მექნიკურად + + + 15 mins - + 30 mins - + 1 hour - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -807,7 +842,7 @@ CYearWindow - + Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar კალენდარი - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. კალენდარი არის ხელსაწყო თარიღების სანახავად და გრაფიკის დასაგეგმად @@ -871,17 +906,17 @@ Work - სამსახური + სამსახური Life - ცხოვრება + ცხოვრება Other - სხვა + სხვა @@ -893,22 +928,22 @@ Close button - + დახურვა One day before start - + დაწყებამდე 1 დღით ადრე Remind me tomorrow - + შემახსენე ხვალ Remind me later - + შემახსენე მოგვიანებით @@ -930,24 +965,24 @@ Tomorrow - + ხვალ Schedule Reminder - + შეხსენების დაგეგმვა %1 to %2 - + %1 დან %2 Today - დღეს + დღეს @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - გაუქმება + გაუქმება - + Delete button - წაშლა + წაშლა QObject - - Account settings + + + Manage calendar + + + + + + Event types + Account settings + + + + Account - + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + ძირითადი - + First day of week - + Time @@ -1067,7 +1112,7 @@ Return - + Today Return დღეს @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - + + Import ICS file + + + + Name: - + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - გაუქმება + გაუქმება - + Save button - შენახვა + შენახვა @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - + M - + @@ -1207,7 +1263,7 @@ YearFrame - + Y @@ -1221,8 +1277,8 @@ - - + + Today Today დღეს diff --git a/translations/dde-calendar_kab.ts b/translations/dde-calendar_kab.ts index 724a3580..f1f463c8 100644 --- a/translations/dde-calendar_kab.ts +++ b/translations/dde-calendar_kab.ts @@ -1,96 +1,94 @@ - - - + AccountItem - + Sync successful - + - + Network error - + - + Server exception - + - + Storage full - + AccountManager - + Local account - + - + Event types - + CColorPickerWidget - + Color - + - + Cancel button - Sefsex + Sefsex - + Save button - Sekles + Sekles CDayMonthView - + Monday Arim - + Tuesday Aram - + Wednesday Ahad - + Thursday Amhad - + Friday Sem - + Saturday Sed - + Sunday Acer @@ -98,30 +96,30 @@ CDayWindow - + Y Aseggas - + M Ayyur - + D Ass - + Lunar - + CGraphicsView - + New Event Tadyant tamaynut @@ -129,7 +127,7 @@ CMonthScheduleNumItem - + %1 more Ugar n 1% @@ -137,12 +135,12 @@ CMonthView - + New event Tadyant tamaynut - + New Event Tadyant tamaynut @@ -150,7 +148,7 @@ CMonthWindow - + Y Aseggas @@ -158,24 +156,24 @@ CMyScheduleView - + My Event Tadyant-iw - + OK button IH - + Delete button Kkes - + Edit button Ẓreg @@ -184,275 +182,275 @@ CPushButton - + New event type - + CScheduleDlg - - - + + + New Event Tadyant tamaynut - + Edit Event Ẓreg tadyant - + End time must be greater than start time Akud n taggara yezmer d netta ara igerrzen ɣef wakud n tazwara - + OK button IH - - - - - - + + + + + + Never Werǧin - + At time of event Deg wakud n tedyant - + 15 minutes before 15 tesdatin send - + 30 minutes before 30 tesdatin send - + 1 hour before 1 usrag send - - + + 1 day before 1 wass send - - + + 2 days before 2 wussan send - - + + 1 week before 1 dduṛt send - + On start day (9:00 AM) Deg tazwara n wass (9:00 SRG) - + + + + + time(s) + Akud (akuden) + + + Enter a name please - + - + The name can not only contain whitespaces - + - - + + Type: Anaw: - - + + Description: Aglam: - - + + All Day: Yal ass: - - + + Starts: Yebda - - + + Ends: Yekfa - - + + Remind Me: Smekti-yi-d: - - + + Repeat: Ales - - + + End Repeat: Taggara n wallus: - + Calendar account: - + - + Calendar account - + - + Type Anaw - + Description Aglam - + All Day Meṛṛa ass - + Time: - + - + Time - + - + Solar - + - + Lunar - + - + Starts Yebda - + Ends Yekfa - + Remind Me Smekti-yi-d - + Repeat Ales - - + + Daily S wass - - + + Weekdays Ussan n yimalas - - + + Weekly S yimalas - - - + + + Monthly S wayyur - - - + + + Yearly S useggas - + End Repeat Taggara n wallus - + After Seld - + On Ɣef - - - - - time(s) - Akud (akuden) - - - + Cancel button Sefsex - + Save button Sekles @@ -461,141 +459,141 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Meṛṛa timeḍriwin n tedyant i d-yettuɣalen ilaq ad sɛunt yiwen waddad i wass kamel. - - + + Do you want to change all occurrences? Tebɣiḍ ad tesnefleḍ meṛṛa timeḍriwin? + - + + + + + + Cancel + button + Sefsex + + + + Change All Senfel kullec - + You are changing the repeating rule of this event. Tbeddleḍ alugen i d-yettuɣalen n tedyant-a. - - - + + + You are deleting an event. Tekkseḍ yiwet tedyant. - + Are you sure you want to delete this event? D tidet tebɣiḍ ad tekkseḍ tadyant-a? - - - - - - - - Cancel - button - Sefsex - - - + Delete button Kkes - + Do you want to delete all occurrences of this event, or only the selected occurrence? Tebɣiḍ ad tekkseḍ meṛṛa timeḍriwin n tedyant-a neɣ tid kan i d-yettwafernen? - + Delete All Kkes kullec - - + + Delete Only This Event Kkes kan tadyant-a - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Tebɣiḍ ad tekkseḍ timeḍriwt-a d tid meṛṛa i d-iteddun, neɣ d tid kan i d-yettufernen? - + Delete All Future Events Kkes meṛṛa tidyanin i d-iteddun - - + + You are changing a repeating event. Tbeddleḍ tadyant i d-yettuɣalen. - + Do you want to change only this occurrence of the event, or all occurrences? Tebɣiḍ ad tbeddleḍ timeḍriwt-agi kan n tedyant, neɣ meṛṛa timeḍriwen? - + All Meṛṛa - - + + Only This Event Tadyant-agi kan - + Do you want to change only this occurrence of the event, or this and all future occurrences? Tebɣiḍ ad tbeddleḍ timeḍriwt-a n tedyant, neɣ tagi d meṛṛa timeḍriwen i d-iteddun? - + All Future Events Tidyanin akk i d-iteddun - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + - + OK button - IH + IH CScheduleSearchDateItem - + Y Aseggas - + M Ayyur - + D Ass @@ -603,17 +601,17 @@ CScheduleSearchItem - + Edit Ẓreg - + Delete Kkes - + All Day Meṛṛa ass @@ -621,7 +619,7 @@ CScheduleSearchView - + No search results Ulac igmaḍ n unadi @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY YAL ASS @@ -637,155 +635,185 @@ CSettingDialog - + Sunday - Acer + Acer - + Monday - Arim + Arim + + + + Tuesday + + + + + Wednesday + + + + + Thursday + - + + Friday + + + + + Saturday + + + + 24-hour clock - + - + 12-hour clock - + - + + import ICS file + + + + Manual - + S ufus - + 15 mins - + - + 30 mins - + - + 1 hour - + - + 24 hours - + - + Sync Now - + - + Last sync - + CTimeEdit - + (%1 mins) - + - + (%1 hour) - + - + (%1 hours) - + CTitleWidget - + Y Aseggas - + M Ayyur - + W Imalas - + D Ass - - + + Search events and festivals - + CWeekWidget - + Sun - + - + Mon - + - + Tue - + - + Wed - + - + Thu - + - + Fri - + - + Sat - + CWeekWindow - + Week Dduṛt - + Y Aseggas @@ -793,13 +821,13 @@ CYearScheduleView - - + + All Day Meṛṛa ass - + No event Ulac tadyant @@ -807,7 +835,7 @@ CYearWindow - + Y Aseggas @@ -815,12 +843,12 @@ CalendarWindow - + Calendar Awitay - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Awitay d afecku i uskan n wazemz akked daɣen d aɣawas n yal ass i usɣiwes n wayen akk ara tgeḍ deg tudert. @@ -828,40 +856,40 @@ Calendarmainwindow - + Calendar Awitay - + Manage - + - + Privacy Policy - + Tasertit n tbaḍnit - + Syncing... - + Amtawi... - + Sync successful - + - + Sync failed, please try later - + CenterWidget - + All Day Yal ass @@ -869,106 +897,106 @@ DAccountDataBase - + Work - Amahil + Amahil - + Life - Tudert + Tudert - + Other - Wayeḍ + Wayeḍ DAlarmManager - - - - + + + + Close button - + Mdel - + One day before start - + Yiwen wass send beddu - + Remind me tomorrow - + Smekti-yi-d azekka - + Remind me later - + Smekti-yi-d ticki - + 15 mins later - + - + 1 hour later - + - + 4 hours later - + - - - + + + Tomorrow - + Azekka - + Schedule Reminder - + Asmekti s usɣiwes - - + + %1 to %2 - + %1 ɣer %2 - - + + Today - Ass-a + Ass-a DragInfoGraphicsView - + Edit Ẓreg - + Delete Kkes - + New event Tadyant tamaynut - + New Event Tadyant tamaynut @@ -976,96 +1004,108 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + - + All events under this type will be deleted and cannot be recovered. - + - + Cancel button - Sefsex + Sefsex - + Delete button - Kkes + Kkes QObject - + + + Manage calendar + + + + + + Event types + + + + Account settings - + - + Account - + - + Select items to be synced - + - + Events - + - - + + General settings - + - + Sync interval - - - - - Manage calendar - + - + Calendar account - + - - Event types - - - - + General - + Amatu - + First day of week - + - + Time - + Return - + Today Return Ass-a @@ -1074,9 +1114,9 @@ Return Today - - - + + + Today Return Today Ass-a @@ -1085,82 +1125,93 @@ ScheduleTypeEditDlg - + + New event type - + - + Edit event type - + - + + Import ICS file + + + + Name: - + Isem: - + Color: - + - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - Sefsex + Sefsex - + Save button - Sekles + Sekles - + The name can not only contain whitespaces - + - + Enter a name please - + Shortcut - + Help Tallalt - + Delete event Kkes tadyant - + Copy Nɣel - + Cut Gzem - + Paste Senteḍ - + Delete Kkes - + Select all Fren kullec @@ -1168,44 +1219,44 @@ SidebarCalendarWidget - + Y - Aseggas + Aseggas - + M - Ayyur + Ayyur TimeJumpDialog - + Go button - + UserloginWidget - + Sign In button - + Kcem - + Sign Out button - + Ffeɣ YearFrame - + Y Aseggas @@ -1213,17 +1264,17 @@ today - - - - - - - - + + + + + + + + Today Today Ass-a - + \ No newline at end of file diff --git a/translations/dde-calendar_km_KH.ts b/translations/dde-calendar_km_KH.ts index afab1aec..c42b35ab 100644 --- a/translations/dde-calendar_km_KH.ts +++ b/translations/dde-calendar_km_KH.ts @@ -48,13 +48,13 @@ Cancel button - បោះបង់ + បោះបង់ Save button - រក្សាទុក + រក្សាទុក @@ -137,12 +137,12 @@ CMonthView - + New event ព្រឹត្តិការណ៍ថ្មី - + New Event ព្រឹត្តិការណ៍ថ្មី @@ -267,6 +267,14 @@ On start day (9:00 AM) នៅថ្ងៃចាប់ផ្តើម (9:00 ព្រឹក) + + + + + + time(s) + ដង() + Enter a name please @@ -437,14 +445,6 @@ On បើក - - - - - - time(s) - ដង() - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? តើអ្នកចង់ផ្លាស់ប្តូរការកើតឡើងទាំងអស់ទេ? + + + + + + + + + Cancel + button + បោះបង់ + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? តើអ្នកប្រាកដជាចង់លុបព្រឹត្តិការណ៍នេះឬ? - - - - - - - - - Cancel - button - បោះបង់ - Delete @@ -579,7 +579,7 @@ OK button - យល់ព្រម + យល់ព្រម @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY ពេញមួយថ្ងៃ @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - ថ្ងៃអាទិត្យ + ថ្ងៃអាទិត្យ - + Monday - ថ្ងៃចន្ទ + ថ្ងៃចន្ទ + + + + Tuesday + ថ្ងៃអង្គារ + + + + Wednesday + ថ្ងៃពុធ + + + + Thursday + ថ្ងៃព្រហស្បតិ៍ + + + + Friday + ថ្ងៃសុក្រ + + + + Saturday + ថ្ងៃសៅរ៍ - + 24-hour clock - + 12-hour clock - + + import ICS file + + + + Manual - + 15 mins - + 30 mins - + 1 hour - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -807,7 +842,7 @@ CYearWindow - + Y ឆ្នាំ @@ -815,12 +850,12 @@ CalendarWindow - + Calendar ប្រតិទិន - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. ប្រតិទិនគឺជាឧបករណ៍សម្រាប់មើលកាលបរិច្ឆេទហើយក៏ជាអ្នករៀបចំផែនការប្រចាំថ្ងៃដ៏ឆ្លាតវៃផងដែរដើម្បីរៀបចំកាលវិភាគទាំងអស់ក្នុងជីវិត។ @@ -871,17 +906,17 @@ Work - ធ្វើការ + ធ្វើការ Life - ជីវិត + ជីវិត Other - ផ្សេងទៀត + ផ្សេងទៀត @@ -893,7 +928,7 @@ Close button - + បិទ @@ -947,7 +982,7 @@ Today - ថ្ងៃនេះ + ថ្ងៃនេះ @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - បោះបង់ + បោះបង់ - + Delete button - លុប + លុប QObject - - Account settings + + + Manage calendar + + + + + + Event types + Account settings + + + + Account - + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + First day of week - + Time @@ -1067,7 +1112,7 @@ Return - + Today Return ថ្ងៃនេះ @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - + + Import ICS file + + + + Name: - + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - បោះបង់ + បោះបង់ - + Save button - រក្សាទុក + រក្សាទុក @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - ឆ្នាំ + ឆ្នាំ M - ខែ + ខែ @@ -1207,7 +1263,7 @@ YearFrame - + Y ឆ្នាំ @@ -1221,8 +1277,8 @@ - - + + Today Today ថ្ងៃនេះ diff --git a/translations/dde-calendar_ko.ts b/translations/dde-calendar_ko.ts index d37f74ec..95494aee 100644 --- a/translations/dde-calendar_ko.ts +++ b/translations/dde-calendar_ko.ts @@ -42,19 +42,19 @@ Color - + 색상 Cancel button - 취소 + 취소 Save button - 저장 + 저장 @@ -137,12 +137,12 @@ CMonthView - + New event 새 이벤트 - + New Event 새 이벤트 @@ -267,6 +267,14 @@ On start day (9:00 AM) 시작일 (오전 9:00) + + + + + + time(s) + 시간 + Enter a name please @@ -358,7 +366,7 @@ Time - + 시간 @@ -437,14 +445,6 @@ On 진행 - - - - - - time(s) - 시간 - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? 모든 항목을 변경하시겠습니까? + + + + + + + + + Cancel + button + 취소 + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? 이 이벤트를 삭제하시겠습니까? - - - - - - - - - Cancel - button - 취소 - Delete @@ -579,7 +579,7 @@ OK button - 확인 + 확인 @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY 하루 종일 @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - 일요일 + 일요일 - + Monday - 월요일 + 월요일 - + + Tuesday + 화요일 + + + + Wednesday + 수요일 + + + + Thursday + 목요일 + + + + Friday + 금요일 + + + + Saturday + 토요일 + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + 수동 + + + 15 mins - + 30 mins - + 1 hour - + 1 시간 - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + 일요일 Mon - + 월요일 Tue - + Wed - + 수요일 Thu - + Fri - + 금요일 Sat - + 토요일 @@ -807,7 +842,7 @@ CYearWindow - + Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar 달력 - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. 캘린더는 날짜를 볼 수있는 도구이며, 일상의 모든 것을 예약 할 수있는 현명한 일일 플래너입니다 @@ -840,12 +875,12 @@ Privacy Policy - + 개인정보 보호정책 Syncing... - + 동기화중... @@ -871,17 +906,17 @@ Work - 작업 + 작업 Life - 생활 + 생활 Other - 기타 + 기타 @@ -893,22 +928,22 @@ Close button - + 닫기 One day before start - + 시작 하루 전 Remind me tomorrow - + 내일 알림 Remind me later - + 나중에 알림 @@ -930,12 +965,12 @@ Tomorrow - + 내일 Schedule Reminder - + 일정 알림 @@ -947,7 +982,7 @@ Today - 오늘 + 오늘 @@ -976,98 +1011,108 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - 취소 + 취소 - + Delete button - 삭제 + 삭제 QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + 계정 + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + 일반 - + First day of week - + Time - + 시간 Return - + Today Return 오늘 @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - - Name: + + Import ICS file - + + Name: + 이름: + + + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - 취소 + 취소 - + Save button - 저장 + 저장 @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - + M - + @@ -1186,7 +1242,7 @@ Go button - + Go @@ -1195,19 +1251,19 @@ Sign In button - + 로그인 Sign Out button - + 로그아웃 YearFrame - + Y @@ -1221,8 +1277,8 @@ - - + + Today Today 오늘 diff --git a/translations/dde-calendar_lv.ts b/translations/dde-calendar_lv.ts index 2015c9d8..4cdea301 100644 --- a/translations/dde-calendar_lv.ts +++ b/translations/dde-calendar_lv.ts @@ -48,13 +48,13 @@ Cancel button - Atcelt + Atcelt Save button - Saglabāt + Saglabāt @@ -137,12 +137,12 @@ CMonthView - + New event Jauns notikums - + New Event Jauns notikums @@ -267,6 +267,14 @@ On start day (9:00 AM) Dienas sākumā (9:00) + + + + + + time(s) + reize(s) + Enter a name please @@ -437,14 +445,6 @@ On Līdz - - - - - - time(s) - reize(s) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? Vai vēlaties mainīt visus periodiskos atkārtojumus? + + + + + + + + + Cancel + button + Atcelt + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Vai esat drošs, ka vēlaties dzēst šo notikumu? - - - - - - - - - Cancel - button - Atcelt - Delete @@ -579,7 +579,7 @@ OK button - Labi + Labi @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY VISU DIENU @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - Svētdiena + Svētdiena - + Monday - Pirmdiena + Pirmdiena + + + + Tuesday + Otrdiena + + + + Wednesday + Trešdiena + + + + Thursday + Ceturtdiena + + + + Friday + Piektdiena + + + + Saturday + Sestdiena - + 24-hour clock - + 12-hour clock - + + import ICS file + + + + Manual - + 15 mins - + 30 mins - + 1 hour - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -807,7 +842,7 @@ CYearWindow - + Y G @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Kalendārs - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Kalendārs ir palīgs ikdienas dzīvē kas palīdz sakārtot tavu laiku. @@ -871,17 +906,17 @@ Work - Darbs + Darbs Life - Dzīve + Dzīve Other - Cits + Cits @@ -893,7 +928,7 @@ Close button - + Aizvērt @@ -947,7 +982,7 @@ Today - Šodiena + Šodiena @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Atcelt + Atcelt - + Delete button - Dzēst + Dzēst QObject - - Account settings + + + Manage calendar + + + + + + Event types + Account settings + + + + Account - + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + First day of week - + Time @@ -1067,7 +1112,7 @@ Return - + Today Return Šodiena @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - + + Import ICS file + + + + Name: - + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - Atcelt + Atcelt - + Save button - Saglabāt + Saglabāt @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - G + G M - M + M @@ -1207,7 +1263,7 @@ YearFrame - + Y G @@ -1221,8 +1277,8 @@ - - + + Today Today Šodiena diff --git a/translations/dde-calendar_ms.ts b/translations/dde-calendar_ms.ts index 2c451e64..1e944d80 100644 --- a/translations/dde-calendar_ms.ts +++ b/translations/dde-calendar_ms.ts @@ -42,19 +42,19 @@ Color - + Warna Cancel button - Batal + Batal Save button - Simpan + Simpan @@ -137,12 +137,12 @@ CMonthView - + New event Peristiwa baharu - + New Event Peristiwa Baharu @@ -267,6 +267,14 @@ On start day (9:00 AM) Pada hari mula (9:00 AM) + + + + + + time(s) + kali + Enter a name please @@ -358,7 +366,7 @@ Time - + Masa @@ -437,14 +445,6 @@ On Pada - - - - - - time(s) - kali - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? Anda pasti mahu mengubah semua kemunculan? + + + + + + + + + Cancel + button + Batal + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Anda pasti mahu memadam peristiwa ini? - - - - - - - - - Cancel - button - Batal - Delete @@ -579,7 +579,7 @@ OK button - OK + OK @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY SEPANJANG HARI @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - Ahad + Ahad - + Monday - Isnin + Isnin + + + + Tuesday + Selasa - + + Wednesday + Rabu + + + + Thursday + Khamis + + + + Friday + Jumaat + + + + Saturday + Sabtu + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + Manual + + + 15 mins - + 30 mins - + 1 hour - + 1 jam - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + Ahd Mon - + Isn Tue - + Sel Wed - + Rab Thu - + Kha Fri - + Jum Sat - + Sab @@ -807,7 +842,7 @@ CYearWindow - + Y T @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Kalendar - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Kalendar ialah sebuah alat untuk melihat tarikh, dan juga satu perancang harian pintar yang dapat menjadualkan semua perkara dalam hidup ini. @@ -840,12 +875,12 @@ Privacy Policy - + Dasar Persendirian Syncing... - + Menyegerak... @@ -871,17 +906,17 @@ Work - Kerja + Kerja Life - Lapang + Lapang Other - Lain-lain + Lain-lain @@ -893,22 +928,22 @@ Close button - + Tutup One day before start - + Satu hari sebelum mula Remind me tomorrow - + Ingatkan saya esok hari Remind me later - + Ingatkan saya kemudian @@ -930,24 +965,24 @@ Tomorrow - + Esok Schedule Reminder - + Peringatan Berjadual %1 to %2 - + %1 hingga %2 Today - Hari ini + Hari ini @@ -976,98 +1011,108 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Batal + Batal - + Delete button - Padam + Padam QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + Akaun + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + Am - + First day of week - + Time - + Masa Return - + Today Return Hari ini @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - - Name: + + Import ICS file - + + Name: + Nama: + + + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - Batal + Batal - + Save button - Simpan + Simpan @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - T + T M - B + B @@ -1195,19 +1251,19 @@ Sign In button - + Daftar Masuk Sign Out button - + Daftar Keluar YearFrame - + Y T @@ -1221,8 +1277,8 @@ - - + + Today Today Hari ini diff --git a/translations/dde-calendar_nl.ts b/translations/dde-calendar_nl.ts index 485688e0..211f473d 100644 --- a/translations/dde-calendar_nl.ts +++ b/translations/dde-calendar_nl.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Lokaal account - + Event types - Afspraaktypes + Afspraaktypes @@ -121,7 +119,7 @@ CGraphicsView - + New Event Nieuwe afspraak @@ -137,12 +135,12 @@ CMonthView - + New event Nieuwe afspraak - + New Event Nieuwe afspraak @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Nieuwe afspraak - + Edit Event Afspraak bewerken - + End time must be greater than start time De eindtijd moet later zijn dan de begintijd - + OK button Oké - - - - - - + + + + + + Never Nooit - + At time of event Bij aanvang - + 15 minutes before 15 minuten van tevoren - + 30 minutes before 30 minuten van tevoren - + 1 hour before 1 uur van tevoren - - + + 1 day before 1 dag van tevoren - - + + 2 days before 2 dagen van tevoren - - + + 1 week before 1 week van tevoren - + On start day (9:00 AM) Op de dag van de afspraak (9:00 AM) - - - + + + time(s) keer - + Enter a name please Voer een naam in - + The name can not only contain whitespaces De naam mag niet alleen bestaan uit spaties - - + + Type: Soort: - - + + Description: Omschrijving: - - + + All Day: Hele dag: - - + + Starts: Begint om: - - + + Ends: Eindigt om: - - + + Remind Me: Herinneren: - - + + Repeat: Herhalen: - - + + End Repeat: Herhaling eindigt op: - + Calendar account: Agenda-account: - + Calendar account Agenda-account - + Type Soort - + Description Omschrijving - + All Day Hele dag - + Time: Tijdstip: - + Time Tijdstip - + Solar Zon - + Lunar Maan - + Starts Begint om - + Ends Eindigt om - + Remind Me Herinneren - + Repeat Herhalen - - + + Daily Dagelijks - - + + Weekdays Weekdagen - - + + Weekly Wekelijks - - - + + + Monthly Maandelijks - - - + + + Yearly Jaarlijks - + End Repeat Herhaling eindigt op - + After Na - + On Op - + Cancel button Annuleren - + Save button Opslaan @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Alle afspraken in reeks moeten voorzien zijn van de status 'hele dag'. - - + + Do you want to change all occurrences? Wil je alle afspraken in de reeks bewerken? - - - - - - - + + + + + + + Cancel button Annuleren - - + + Change All Reeks bewerken - + You are changing the repeating rule of this event. Je past de herhaalinstellingen van deze afspraak aan. - - - + + + You are deleting an event. Je verwijdert een afspraak. - + Are you sure you want to delete this event? Weet je zeker dat je deze afspraak wilt verwijderen? - + Delete button Verwijderen - + Do you want to delete all occurrences of this event, or only the selected occurrence? Wil je alle afspraken in de reeks verwijderen of enkel deze? - + Delete All Reeks verwijderen - - + + Delete Only This Event Deze afspraak verwijderen - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Wil je deze en toekomstige afspraken verwijderen of enkel de deze? - + Delete All Future Events Toekomstige afspraken verwijderen - - + + You are changing a repeating event. Je past een reeks afspraken aan. - + Do you want to change only this occurrence of the event, or all occurrences? Wil je deze en toekomstige afspraken aanpassen of enkel deze? - + All Reeks - - + + Only This Event Deze afspraak - + Do you want to change only this occurrence of the event, or this and all future occurrences? Wil je deze en toekomstige afspraken aanpassen of enkel deze? - + All Future Events Toekomstige afspraken - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Je hebt een schrikkelmaand gekozen. De herinnering wordt op basis van de maankalender getoond. - + OK button Oké @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY HELE DAG @@ -637,60 +635,96 @@ CSettingDialog - + Sunday zondag - + Monday maandag - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + Systeeminstellingen gebruiken + + + 24-hour clock 24-uursklok - + 12-hour clock 12-uursklok - + + import ICS file + Ics-bestand importeren + + + Manual Handmatig - + 15 mins 15 min. - + 30 mins 30 min. - + 1 hour 1 uur - + 24 hours 24 uur - + Sync Now Nu synchroniseren - + Last sync Recentste synchronisatie + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -780,12 +814,12 @@ CWeekWindow - + Week Week - + Y J @@ -807,7 +841,7 @@ CYearWindow - + Y J @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Kalender - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Met Kalender kun je je afspraken en planning beheren, zowel werk als privé. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Kalender - + Manage Beheren - + Privacy Policy Privacybeleid - + Syncing... Bezig met synchroniseren… - + Sync successful Sychroniseren voltooid - + Sync failed, please try later Synchroniseren mislukt - probeer het later opnieuw @@ -869,85 +903,64 @@ DAccountDataBase - Work - + Werk - Life - + Privé - Other - + Overig DAlarmManager - - - - Close button - + Sluiten - One day before start - + Eén dag van tevoren - Remind me tomorrow - + Herinner me morgen - Remind me later - + Herinner me later - 15 mins later - + 15 min. later - 1 hour later - + 1 uur later - 4 hours later - + 4 uur later - - - Tomorrow - + Morgen - Schedule Reminder - + Herinnering inplannen - - %1 to %2 - + van %1 tot %2 - - Today - Vandaag + Vandaag @@ -976,23 +989,33 @@ JobTypeListView - + + export + Exporteren + + + + import ICS file + Ics-bestand importeren + + + You are deleting an event type. Je staat op het punt om een afspraaktype te verwijderen. - + All events under this type will be deleted and cannot be recovered. Alle bijbehorende afspraken worden verwijderd en kunnen niet worden hersteld. - + Cancel button Annuleren - + Delete button Verwijderen @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Agenda beheren - - + + Event types Afspraaktypes - + Account settings Accountinstellingen - + Account Account - + Select items to be synced Selecteer de te synchroniseren items - + Events Afspraken - - + + General settings Algemene instellingen - + Sync interval Synchroniseren, elke - + Calendar account Agenda-account - + General Algemeen - + First day of week Eerste dag van de week - + Time Tijdstip @@ -1067,7 +1090,7 @@ Return - + Today Return Vandaag @@ -1078,7 +1101,7 @@ - + Today Return Today Vandaag @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Nieuw afspraaktype - + Edit event type Afspraaktype bewerken - + + Import ICS file + Ics-bestand importeren + + + Name: Naam: - + Color: Kleur: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + <a href='https://wikipedia.org/wiki/ICalendar'>Ics</a>-bestand: + + + Cancel button Annuleren - + Save button Opslaan @@ -1124,7 +1158,7 @@ De naam mag niet alleen bestaan uit spaties - + Enter a name please Voer een naam in @@ -1207,7 +1241,7 @@ YearFrame - + Y J @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Vandaag - + \ No newline at end of file diff --git a/translations/dde-calendar_pl.ts b/translations/dde-calendar_pl.ts index 3627b2a7..4e35b188 100644 --- a/translations/dde-calendar_pl.ts +++ b/translations/dde-calendar_pl.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Konto lokalne - + Event types - Typy wydarzeń + Typy wydarzeń @@ -121,7 +119,7 @@ CGraphicsView - + New Event Nowe wydarzenie @@ -137,12 +135,12 @@ CMonthView - + New event Nowe wydarzenie - + New Event Nowe wydarzenie @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Nowe wydarzenie - + Edit Event Edytuj wydarzenie - + End time must be greater than start time Czas zakończenia musi być późniejszy niż czas rozpoczęcia - + OK button OK - - - - - - + + + + + + Never Nigdy - + At time of event W czasie wydarzenia - + 15 minutes before 15 minut przed - + 30 minutes before 30 minut przed - + 1 hour before 1 godzinę przed - - + + 1 day before 1 dzień przed - - + + 2 days before 2 dni przed - - + + 1 week before 1 tydzień przed - + On start day (9:00 AM) W dniu rozpoczęcia (9:00) - - - + + + time(s) raz(y) - + Enter a name please Wprowadź nazwę - + The name can not only contain whitespaces - Nazwa nie może zawierać tylko znaków spacji + Nazwa nie może zawierać tylko białych znaków - - + + Type: Typ: - - + + Description: Opis: - - + + All Day: Cały dzień: - - + + Starts: Początek: - - + + Ends: Koniec: - - + + Remind Me: Przypomnij mi: - - + + Repeat: Powtórz: - - + + End Repeat: Zakończ powtarzanie: - + Calendar account: Konto kalendarza: - + Calendar account Konto kalendarza - + Type Typ - + Description Opis - + All Day Cały dzień - + Time: Czas: - + Time Czas - + Solar Słoneczny - + Lunar Księżycowy - + Starts Początek - + Ends Koniec - + Remind Me Przypomnij mi - + Repeat Powtórz - - + + Daily Codziennie - - + + Weekdays W dni robocze - - + + Weekly Co tydzień - - - + + + Monthly Co miesiąc - - - + + + Yearly Co rok - + End Repeat Zakończ Powtarzanie - + After Po - + On - + Cancel button Anuluj - + Save button Zapisz @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Wszystkie wystąpienia powtarzającego się wydarzenia muszą zawierać ten sam stan całodniowy. - - + + Do you want to change all occurrences? Czy chcesz zmienić wszystkie wystąpienia? - - - - - - - + + + + + + + Cancel button Anuluj - - + + Change All Zmień wszystkie - + You are changing the repeating rule of this event. Zmieniasz regułę powtarzania tego wydarzenia. - - - + + + You are deleting an event. Usuwasz wydarzenie. - + Are you sure you want to delete this event? Czy na pewno chcesz usunąć to wydarzenie? - + Delete button Usuń - + Do you want to delete all occurrences of this event, or only the selected occurrence? Czy chcesz usunąć wszystkie wystąpienia tego zdarzenia, czy tylko wybrane wystąpienie? - + Delete All Usuń wszystkie - - + + Delete Only This Event Usuń tylko to wydarzenie - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Czy chcesz usunąć to i wszystkie przyszłe wystąpienia tego wydarzenia, czy tylko wybrane wystąpienie? - + Delete All Future Events Usuń wszystkie przyszłe wydarzenia - - + + You are changing a repeating event. Zmieniasz powtarzające się wydarzenie. - + Do you want to change only this occurrence of the event, or all occurrences? Czy chcesz zmienić tylko to wystąpienie wydarzenia, czy wszystkie wydarzenia? - + All Wszystko - - + + Only This Event Tylko to wydarzenie - + Do you want to change only this occurrence of the event, or this and all future occurrences? Czy chcesz zmienić tylko to wystąpienie wydarzenia, czy to i wszystkie przyszłe wydarzenia? - + All Future Events Wszystkie przyszłe wydarzenia - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Zaznaczono miesiąc przestępny, przypomnienie będzie działać zgodnie z zasadami kalendarza księżycowego. - + OK button OK @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY CAŁY DZIEŃ @@ -637,60 +635,96 @@ CSettingDialog - + Sunday Niedziela - + Monday Poniedziałek - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + Użyj ustawienia systemowego + + + 24-hour clock Zegar 24-godzinny - + 12-hour clock Zegar 12-godzinny - + + import ICS file + Importuj plik ICS + + + Manual Ręcznie - + 15 mins 15 min - + 30 mins 30 min - + 1 hour 1 godz - + 24 hours 24 godz - + Sync Now Synchronizuj teraz - + Last sync Ostatnia synchronizacja + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -780,14 +814,14 @@ CWeekWindow - + Week Tydzień - + Y - Y + R @@ -807,20 +841,20 @@ CYearWindow - + Y - Y + R CalendarWindow - + Calendar Kalendarz - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Kalendarz to narzędzie umożliwiające przeglądanie dat, jak i inteligentny terminarz, w którym możesz zaplanować wszystkie wydarzenia w życiu. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Kalendarz - + Manage Zarządzaj - + Privacy Policy Polityka prywatności - + Syncing... Synchronizuję... - + Sync successful Synchronizacja zakończona - + Sync failed, please try later Błąd synchronizacji, spróbuj ponownie później @@ -869,85 +903,64 @@ DAccountDataBase - Work - + Praca - Life - + Życie - Other - + Inne DAlarmManager - - - - Close button - + Zamknij - One day before start - + Dzień przed rozpoczęciem - Remind me tomorrow - + Przypomnij mi jutro - Remind me later - + Przypomnij mi później - 15 mins later - + 15 minut później - 1 hour later - + 1 godzinę później - 4 hours later - + 4 godziny później - - - Tomorrow - + Jutro - Schedule Reminder - + Zaplanuj przypomnienie - - %1 to %2 - + %1 do %2 - - Today - Dzisiaj + Dzisiaj @@ -976,23 +989,33 @@ JobTypeListView - + + export + Eksportuj + + + + import ICS file + Importuj plik ICS + + + You are deleting an event type. Usuwasz typ wydarzenia. - + All events under this type will be deleted and cannot be recovered. Wszystkie wydarzenia skatalogowane pod tym typem zostaną usunięte i nie będzie można ich przywrócić. - + Cancel button Anuluj - + Delete button Usuń @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Zarządzaj kalendarzem - - + + Event types Typy wydarzeń - + Account settings Ustawienia konta - + Account Konto - + Select items to be synced Wybierz przedmioty do synchronizacji - + Events Wydarzenia - - + + General settings Ustawienia ogólne - + Sync interval Interwał synchronizacji - + Calendar account Konto kalendarza - + General Ogólne - + First day of week Pierwszy dzień tygodnia - + Time Czas @@ -1067,7 +1090,7 @@ Return - + Today Return Dzisiaj @@ -1078,7 +1101,7 @@ - + Today Return Today Dzisiaj @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Nowy typ wydarzenia - + Edit event type Edytuj typ wydarzenia - + + Import ICS file + Importuj plik ICS + + + Name: Nazwa: - + Color: Kolor: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + Plik <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a>: + + + Cancel button Anuluj - + Save button Zapisz @@ -1124,7 +1158,7 @@ Nazwa nie może zawierać tylko znaków spacji - + Enter a name please Wprowadź nazwę @@ -1207,9 +1241,9 @@ YearFrame - + Y - Y + R @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Dzisiaj - + \ No newline at end of file diff --git a/translations/dde-calendar_pt.ts b/translations/dde-calendar_pt.ts index 60e8d76a..6c4f3c83 100644 --- a/translations/dde-calendar_pt.ts +++ b/translations/dde-calendar_pt.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Conta local - + Event types - Tipos de evento + Tipos de evento @@ -121,7 +119,7 @@ CGraphicsView - + New Event Novo evento @@ -137,12 +135,12 @@ CMonthView - + New event Novo evento - + New Event Novo evento @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Novo evento - + Edit Event Editar evento - + End time must be greater than start time A hora de fim deve ser maior do que a hora de início - + OK button Aceitar - - - - - - + + + + + + Never Nunca - + At time of event Na hora do evento - + 15 minutes before 15 minutos antes - + 30 minutes before 30 minutos antes - + 1 hour before 1 hora antes - - + + 1 day before 1 dia antes - - + + 2 days before 2 dias antes - - + + 1 week before 1 semana antes - + On start day (9:00 AM) No início do dia (9:00 AM) - - - + + + time(s) vez(es) - + Enter a name please Introduza um nome - + The name can not only contain whitespaces O nome não pode conter apenas espaços em branco - - + + Type: Tipo: - - + + Description: Descrição: - - + + All Day: Dia todo: - - + + Starts: Inicia: - - + + Ends: Termina: - - + + Remind Me: Lembrar-me: - - + + Repeat: Repetir: - - + + End Repeat: Fim de repetição: - + Calendar account: Conta de calendário: - + Calendar account Conta de calendário - + Type Tipo - + Description Descrição - + All Day Dia todo - + Time: Hora: - + Time Hora - + Solar Solar - + Lunar Lunar - + Starts Inicia - + Ends Termina - + Remind Me Lembrar-me - + Repeat Repetir - - + + Daily Diário - - + + Weekdays Dias da semana - - + + Weekly Semanal - - - + + + Monthly Mensal - - - + + + Yearly Anual - + End Repeat Fim da repetição - + After Depois - + On Em - + Cancel button Cancelar - + Save button Guardar @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Todas as ocorrências de um evento repetido devem ter o mesmo estado durante todo o dia. - - + + Do you want to change all occurrences? Deseja alterar todas as ocorrências? - - - - - - - + + + + + + + Cancel button Cancelar - - + + Change All Alterar tudo - + You are changing the repeating rule of this event. Está a alterar a regra da repetição deste evento. - - - + + + You are deleting an event. Está a eliminar um evento. - + Are you sure you want to delete this event? Tem a certeza que deseja eliminar este evento? - + Delete button Eliminar - + Do you want to delete all occurrences of this event, or only the selected occurrence? Deseja eliminar todas as ocorrências deste evento ou apenas a ocorrência selecionada? - + Delete All Eliminar tudo - - + + Delete Only This Event Eliminar apenas este evento - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Deseja eliminar esta e todas as ocorrências futuras deste evento ou apenas a ocorrência selecionada? - + Delete All Future Events Eliminar todos os eventos futuros - - + + You are changing a repeating event. Está a alterar um evento repetido. - + Do you want to change only this occurrence of the event, or all occurrences? Deseja alterar apenas esta ocorrência do evento, ou todas as ocorrências? - + All Tudo - - + + Only This Event Apenas este evento - + Do you want to change only this occurrence of the event, or this and all future occurrences? Deseja alterar apenas esta ocorrência do evento ou esta e todas as ocorrências futuras? - + All Future Events Todos os eventos futuros - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Selecionou um mês bissexto, e será lembrado de acordo com as regras do calendário lunar. - + OK button Aceitar @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY DIA TODO @@ -637,60 +635,96 @@ CSettingDialog - + Sunday Domingo - + Monday Segunda - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock Relógio de 24 horas - + 12-hour clock Relógio de 12 horas - + + import ICS file + importar ficheiro ICS + + + Manual Manual - + 15 mins 15 mins - + 30 mins 30 mins - + 1 hour 1 hora - + 24 hours 24 horas - + Sync Now Sincronizar agora - + Last sync Última sincronização + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -780,12 +814,12 @@ CWeekWindow - + Week Semana - + Y A @@ -807,7 +841,7 @@ CYearWindow - + Y A @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Calendário - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. O Calendário é uma ferramenta para visualizar datas e também uma agenda diária inteligente para agendar todas as coisas na vida. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Calendário - + Manage Gerir - + Privacy Policy Política de privacidade - + Syncing... A sincronizar... - + Sync successful Sincronização bem sucedida - + Sync failed, please try later Falha ao sincronizar. Tente novamente mais tarde @@ -869,85 +903,64 @@ DAccountDataBase - Work - + Trabalho - Life - + Vida - Other - + Outro DAlarmManager - - - - Close button - + Fechar - One day before start - + Um dia antes do início - Remind me tomorrow - + Lembra-me amanhã - Remind me later - + Lembrar-me mais tarde - 15 mins later - + 15 mins depois - 1 hour later - + 1 hora depois - 4 hours later - + 4 horas depois - - - Tomorrow - + Amanhã - Schedule Reminder - + Agendar lembrete - - %1 to %2 - + %1 até %2 - - Today - Hoje + Hoje @@ -976,23 +989,33 @@ JobTypeListView - + + export + exportar + + + + import ICS file + importar ficheiro ICS + + + You are deleting an event type. Está a eliminar um tipo de evento. - + All events under this type will be deleted and cannot be recovered. Todos os eventos deste tipo serão eliminados e não podem ser recuperados. - + Cancel button Cancelar - + Delete button Eliminar @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Gerir calendário - - + + Event types Tipos de evento - + Account settings Definições de conta - + Account Conta - + Select items to be synced Selecionar itens a sincronizar - + Events Eventos - - + + General settings Definições gerais - + Sync interval Intervalo de sincronização - + Calendar account Conta de calendário - + General Geral - + First day of week Primeiro dia da semana - + Time Hora @@ -1067,7 +1090,7 @@ Return - + Today Return Hoje @@ -1078,7 +1101,7 @@ - + Today Return Today Hoje @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Novo tipo de evento - + Edit event type Editar tipo de evento - + + Import ICS file + Importar ficheiro ICS + + + Name: Nome: - + Color: Cor: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + Ficheiro <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> : + + + Cancel button Cancelar - + Save button Guardar @@ -1124,7 +1158,7 @@ O nome não pode conter apenas espaços em branco - + Enter a name please Introduza um nome @@ -1207,7 +1241,7 @@ YearFrame - + Y A @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Hoje - + \ No newline at end of file diff --git a/translations/dde-calendar_pt_BR.ts b/translations/dde-calendar_pt_BR.ts index 02dbd0f5..861af639 100644 --- a/translations/dde-calendar_pt_BR.ts +++ b/translations/dde-calendar_pt_BR.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Conta local - + Event types - Tipos de eventos + Tipos de eventos @@ -121,7 +119,7 @@ CGraphicsView - + New Event Novo Evento @@ -137,12 +135,12 @@ CMonthView - + New event Novo evento - + New Event Novo Evento @@ -166,7 +164,7 @@ OK button - OK + Ok @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Novo Evento - + Edit Event Editar Evento - + End time must be greater than start time O tempo de término deve ser maior que o tempo de início - + OK button - OK + Ok - - - - - - + + + + + + Never Nunca - + At time of event No momento do evento - + 15 minutes before 15 minutos antes - + 30 minutes before 30 minutos antes - + 1 hour before 1 hora antes - - + + 1 day before 1 dia antes - - + + 2 days before 2 dias antes - - + + 1 week before 1 semana antes - + On start day (9:00 AM) No dia de início (9:00 AM) - - - + + + time(s) vez(es) - + Enter a name please Digite um nome, por favor - + The name can not only contain whitespaces O nome não pode conter apenas espaços em branco - - + + Type: Tipo: - - + + Description: Descrição: - - + + All Day: Dia Inteiro: - - + + Starts: Inicia em: - - + + Ends: Termina em: - - + + Remind Me: Lembre-me: - - + + Repeat: Repetir: - - + + End Repeat: Termina em: - + Calendar account: Conta de calendário: - + Calendar account Conta de calendário - + Type Tipo - + Description Descrição - + All Day Dia Inteiro - + Time: Horário: - + Time Horário - + Solar Solar - + Lunar Lunar - + Starts Inicia em - + Ends Termina em - + Remind Me Lembre-me - + Repeat Repetir - - + + Daily Diariamente - - + + Weekdays Dias úteis - - + + Weekly Semanalmente - - - + + + Monthly Mensalmente - - - + + + Yearly Anualmente - + End Repeat Termina em - + After Depois - + On Ativo - + Cancel button Cancelar - + Save button Salvar @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Todas as ocorrências de um evento repetitivo devem ter o mesmo status durante o dia inteiro. - - + + Do you want to change all occurrences? Alterar todas as ocorrências? - - - - - - - + + + + + + + Cancel button Cancelar - - + + Change All Alterar Tudo - + You are changing the repeating rule of this event. A regra de repetição deste evento será alterada. - - - + + + You are deleting an event. Um evento será excluído. - + Are you sure you want to delete this event? Excluir este evento? - + Delete button Excluir - + Do you want to delete all occurrences of this event, or only the selected occurrence? Excluir todas as ocorrências deste evento; ou apenas a ocorrência selecionada? - + Delete All Excluir Tudo - - + + Delete Only This Event Excluir Apenas Este Evento - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Excluir este evento e todas as suas ocorrências futuras; ou apenas a ocorrência selecionada? - + Delete All Future Events Excluir Todos os Eventos Futuros - - + + You are changing a repeating event. Um evento repetido será alterado. - + Do you want to change only this occurrence of the event, or all occurrences? Alterar apenas esta ocorrência do evento; ou todas as ocorrências? - + All Tudo - - + + Only This Event Apenas Este Evento - + Do you want to change only this occurrence of the event, or this and all future occurrences? Alterar apenas esta ocorrência do evento; ou esta e todas as ocorrências futuras? - + All Future Events Todos os Eventos Futuros - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Você selecionou um mês bissexto e será lembrado de acordo com as regras do calendário lunar. - + OK button Ok @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY DIA INTEIRO @@ -637,60 +635,96 @@ CSettingDialog - + Sunday Domingo - + Monday Segunda-feira - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock Formato de 24 horas - + 12-hour clock Formato de 12 horas - + + import ICS file + importar arquivo ICS + + + Manual Manual - + 15 mins 15 mins - + 30 mins 30 mins - + 1 hour 1 hora - + 24 hours 24 horas - + Sync Now Sincronizar Agora - + Last sync Última sincronização + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -780,12 +814,12 @@ CWeekWindow - + Week Semana - + Y A @@ -807,7 +841,7 @@ CYearWindow - + Y A @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Calendário - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. O Calendário é uma ferramenta que permite agendar e visualizar eventos. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Calendário - + Manage Gerenciar - + Privacy Policy Política de Privacidade - + Syncing... Sincronizando... - + Sync successful Sincronização bem-sucedida - + Sync failed, please try later A sincronização falhou, tente novamente mais tarde @@ -869,85 +903,64 @@ DAccountDataBase - Work - + Trabalho - Life - + Social - Other - + Outro DAlarmManager - - - - Close button - + Fechar - One day before start - + Um dia antes do início - Remind me tomorrow - + Lembre-me amanhã - Remind me later - + Lembre-me mais tarde - 15 mins later - + 15 minutos depois - 1 hour later - + 1 hora depois - 4 hours later - + 4 horas depois - - - Tomorrow - + Amanhã - Schedule Reminder - + Agendar Lembrete - - %1 to %2 - + %1 às %2 - - Today - Hoje + Hoje @@ -976,23 +989,33 @@ JobTypeListView - + + export + exportar + + + + import ICS file + + + + You are deleting an event type. Você está a eliminar um tipo de evento. - + All events under this type will be deleted and cannot be recovered. Todos os eventos deste tipo serão eliminados e não poderão ser recuperados. - + Cancel button Cancelar. - + Delete button Excluir @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Gerenciar calendário - - + + Event types Tipos de eventos - + Account settings Configurações de conta - + Account Conta - + Select items to be synced Selecionar itens para sincronizar - + Events Eventos - - + + General settings Definições gerais - + Sync interval Intervalo de sincronização - + Calendar account Conta de calendário - + General Geral - + First day of week Primeiro dia da semana - + Time Horário @@ -1067,7 +1090,7 @@ Return - + Today Return Hoje @@ -1078,7 +1101,7 @@ - + Today Return Today Hoje @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Novo tipo de evento - + Edit event type Editar o tipo de evento - + + Import ICS file + Importar arquivo ICS + + + Name: Nome: - + Color: Cor: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + Arquivo <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a>: + + + Cancel button Cancelar - + Save button Salvar @@ -1124,7 +1158,7 @@ O nome não pode ser apenas espaços em branco - + Enter a name please Digite um nome por favor @@ -1207,7 +1241,7 @@ YearFrame - + Y A @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Hoje - + \ No newline at end of file diff --git a/translations/dde-calendar_ro.ts b/translations/dde-calendar_ro.ts index de76f8b6..2b077658 100644 --- a/translations/dde-calendar_ro.ts +++ b/translations/dde-calendar_ro.ts @@ -42,19 +42,19 @@ Color - + Culoare Cancel button - Anulează + Anulează Save button - Salvare + Salvare @@ -137,12 +137,12 @@ CMonthView - + New event Eveniment nou - + New Event Eveniment nou @@ -267,6 +267,14 @@ On start day (9:00 AM) Începutul zilei (9:00 AM) + + + + + + time(s) + ori + Enter a name please @@ -437,14 +445,6 @@ On Pornire - - - - - - time(s) - ori - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? Doriți să schimbați toate aparițiile? + + + + + + + + + Cancel + button + Anulează + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Sigur doriţi să ştergeţi acest eveniment? - - - - - - - - - Cancel - button - Anulează - Delete @@ -579,7 +579,7 @@ OK button - Ok + Ok @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY TOATĂ ZIUA @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - Duminică + Duminică - + Monday - Luni + Luni + + + + Tuesday + Marţi + + + + Wednesday + Miercuri + + + + Thursday + Joi - + + Friday + Vineri + + + + Saturday + Sâmbătă + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + Manual + + + 15 mins - + 30 mins - + 1 hour - + 1 oră - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + Dum Mon - + Lu Tue - + Mar Wed - + Mie Thu - + Joi Fri - + Vin Sat - + Sâm @@ -807,7 +842,7 @@ CYearWindow - + Y A @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Calendar - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Calendarul este un instrument pentru a vizualiza datele și, de asemenea, un planificator inteligent zilnic pentru a programa toate lucrurile din viață. @@ -840,12 +875,12 @@ Privacy Policy - + Politica de Confidențialitate Syncing... - + Sincronizare... @@ -871,17 +906,17 @@ Work - Serviciu + Serviciu Life - Viaţă + Viaţă Other - Altul + Altul @@ -893,22 +928,22 @@ Close button - + Închidere One day before start - + O zi înainte de a începe Remind me tomorrow - + Reaminteşte mâine Remind me later - + Reaminteşte mai târziu @@ -930,24 +965,24 @@ Tomorrow - + Mâine Schedule Reminder - + Programare Reminder %1 to %2 - + %1 la %2 Today - Astăzi + Astăzi @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Anulează + Anulează - + Delete button - + Ștergeți QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + Cont + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + General - + First day of week - + Time @@ -1067,7 +1112,7 @@ Return - + Today Return Astăzi @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - - Name: + + Import ICS file - + + Name: + Nume: + + + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - Anulează + Anulează - + Save button - Salvare + Salvare @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - + Y M - + l @@ -1195,19 +1251,19 @@ Sign In button - + Conectați-vă Sign Out button - + Deconectați-vă YearFrame - + Y A @@ -1221,8 +1277,8 @@ - - + + Today Today Astăzi diff --git a/translations/dde-calendar_ru.ts b/translations/dde-calendar_ru.ts index f07f612a..ada3e2cf 100644 --- a/translations/dde-calendar_ru.ts +++ b/translations/dde-calendar_ru.ts @@ -34,7 +34,7 @@ Event types - + Типы событий @@ -137,12 +137,12 @@ CMonthView - + New event Новое событие - + New Event Новое Событие @@ -573,7 +573,7 @@ You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + Вы выбрали високосный месяц, вы будете оповещены об этом в соответствии с правилами лунного календаря. @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY ВЕСЬ ДЕНЬ @@ -637,58 +637,93 @@ CSettingDialog - + Sunday Воскресенье - + Monday Понедельник - + + Tuesday + Вторник + + + + Wednesday + Среда + + + + Thursday + Четверг + + + + Friday + Пятница + + + + Saturday + Суббота + + + 24-hour clock 24-часовой - + 12-hour clock - 24-часовой {12-?} + 12-часовой формат времени - + + import ICS file + импорт файла ICS + + + Manual Вручную - + 15 mins - + 15 минут - + 30 mins - + 30 минут - + 1 hour 1 час - + 24 hours - + 24 часа - + Sync Now - + Синхронизировать Сейчас - + Last sync + Последняя синхронизация + + + + Please go to the <a href='/'>Control Center</a> to change settings @@ -736,7 +771,7 @@ Search events and festivals - + Поиск мероприятий и фестивалей @@ -807,7 +842,7 @@ CYearWindow - + Y Г @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Календарь - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Календарь - это инструмент для просмотра дат, а также умный ежедневник для планирования всех событий вашей повседневной жизни. @@ -850,12 +885,12 @@ Sync successful - Успешная синхронизация + Успешная синхронизация Sync failed, please try later - + Не удалось синхронизировать, пожалуйста, попробуйте позже @@ -871,17 +906,17 @@ Work - + Работа Life - + Жизнь Other - + Остальное @@ -893,61 +928,61 @@ Close button - + Закрыть One day before start - + За день до начала Remind me tomorrow - + Напомнить завтра Remind me later - + Напомнить позже 15 mins later - + Спустя 15 минут 1 hour later - + Спустя 1 час 4 hours later - + Спустя 4 часа Tomorrow - + Завтра Schedule Reminder - + Напоминание о расписании %1 to %2 - + от 1% до %2 Today - Сегодня + Сегодня @@ -976,23 +1011,33 @@ JobTypeListView - + + export + Экспорт + + + + import ICS file + импорт файла ICS + + + You are deleting an event type. - + Вы удаляете тип события. - + All events under this type will be deleted and cannot be recovered. - + Все события этого типа будут удалены и не подлежат восстановлению. - + Cancel button Отмена - + Delete button Удалить @@ -1001,65 +1046,65 @@ QObject - - + + Manage calendar - - + + Event types - + Типы событий - + Account settings - + Настройки учетной записи - + Account Учетная запись - + Select items to be synced - + Выберите элементы для синхронизации - + Events - + События - - + + General settings - + Общие настройки - + Sync interval - + Интервал синхронизации - + Calendar account - Учетная запись календаря: + Учетная запись календаря: - + General Общие - + First day of week - + Первый день недели - + Time Время @@ -1067,7 +1112,7 @@ Return - + Today Return Сегодня @@ -1087,33 +1132,44 @@ ScheduleTypeEditDlg - + + New event type - Новый тип события + Новый тип события - + Edit event type - + Редактировать тип события + + + + Import ICS file + импорт файла ICS - + Name: Имя: - + Color: Цвет: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + <a href='https://wikipedia.org/wiki/ICalendar'>ICS1</a>Файл: + + + Cancel button Отмена - + Save button Сохранить @@ -1121,10 +1177,10 @@ The name can not only contain whitespaces - Имя не может содержать только пробелы + Имя не может содержать только пробелы - + Enter a name please Введите имя, пожалуйста @@ -1186,7 +1242,7 @@ Go button - + Вперед @@ -1207,7 +1263,7 @@ YearFrame - + Y Г @@ -1221,8 +1277,8 @@ - - + + Today Today Сегодня diff --git a/translations/dde-calendar_si.ts b/translations/dde-calendar_si.ts index 0d92ce31..f1cff730 100644 --- a/translations/dde-calendar_si.ts +++ b/translations/dde-calendar_si.ts @@ -48,13 +48,13 @@ Cancel button - අවලංගු කරන්න + අවලංගු කරන්න Save button - සුරකින්න + සුරකින්න @@ -137,12 +137,12 @@ CMonthView - + New event නව සිදුවීමක් - + New Event නව හමුවක් @@ -267,6 +267,14 @@ On start day (9:00 AM) ඇරඹෙන දින (පෙ.ව 9.00) + + + + + + time(s) + වේලාව (න්) + Enter a name please @@ -437,14 +445,6 @@ On මත - - - - - - time(s) - වේලාව (න්) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? ඔබට සියලු පුනරාවර්ථනයන් වෙනස් කිරීමද අවශ්‍යද? + + + + + + + + + Cancel + button + අවලංගු කරන්න + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? මෙම හමුව මකා දැමීමට අවශ්‍ය බව ඔබට විශ්වාසද? - - - - - - - - - Cancel - button - අවලංගු කරන්න - Delete @@ -579,7 +579,7 @@ OK button - හරි + හරි @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY දිනය පුරාම @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - ඉරිදා + ඉරිදා - + Monday - සඳුදා + සඳුදා + + + + Tuesday + අඟහරුවාදා + + + + Wednesday + බදාදා + + + + Thursday + බ්‍රහස්පතින්දා + + + + Friday + සිකුරාදා - + + Saturday + සෙනසුරාදා + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + සව්‍යං + + + 15 mins - + 30 mins - + 1 hour - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + ඉරි. Mon - + සදු. Tue - + අග. Wed - + බදා. Thu - + බ්‍රහස්. Fri - + සිකු. Sat - + සෙන. @@ -807,7 +842,7 @@ CYearWindow - + Y වර් @@ -815,12 +850,12 @@ CalendarWindow - + Calendar දින දසුන - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. දින දසුන යනු දිනයන් බැලීමට මෙන්ම ජීවිතයේ සෑම දෙයක්ම සැලසුම් කිරීමට ‍භාවිත කල හැකි දෛනික සැලසුම්කරන යෙදවුමකි. @@ -845,7 +880,7 @@ Syncing... - + සමමුහුර්ත වෙමින්... @@ -871,17 +906,17 @@ Work - කාර්යය + කාර්යය Life - ජීවිතය + ජීවිතය Other - වෙනත් + වෙනත් @@ -893,22 +928,22 @@ Close button - + වසා දමන්න One day before start - + ආරම්භ කිරීමට ඇත්තේ එක් දිනක් පමණි Remind me tomorrow - + මට හෙට මතක් කරන්න Remind me later - + මට පසුව මතක් කරන්න @@ -930,12 +965,12 @@ Tomorrow - + හෙට Schedule Reminder - + මතක් කිරීමක් සකසන්න @@ -947,7 +982,7 @@ Today - අද + අද @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - අවලංගු කරන්න + අවලංගු කරන්න - + Delete button - + මකා දමන්න QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + පරිශීලක ගිණුම + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + පොදු - + First day of week - + Time @@ -1067,7 +1112,7 @@ Return - + Today Return අද @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - - Name: + + Import ICS file - + + Name: + නම: + + + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - අවලංගු කරන්න + අවලංගු කරන්න - + Save button - සුරකින්න + සුරකින්න @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - + වස M - මස + මස @@ -1195,19 +1251,19 @@ Sign In button - + පුරනය වන්න Sign Out button - + ඉවත් වන්න YearFrame - + Y වර් @@ -1221,8 +1277,8 @@ - - + + Today Today අද diff --git a/translations/dde-calendar_sk.ts b/translations/dde-calendar_sk.ts index cf1f359c..6450843e 100644 --- a/translations/dde-calendar_sk.ts +++ b/translations/dde-calendar_sk.ts @@ -1,40 +1,38 @@ - - - + AccountItem Sync successful - + Synchronizácia úspešná Network error - + Chyba siete Server exception - + Storage full - + Úložisko je plné AccountManager - + Local account - + Miestny účet - + Event types - + @@ -42,19 +40,19 @@ Color - + Farba Cancel button - Zrušiť + Zrušiť Save button - Uložiť + Uložiť @@ -115,13 +113,13 @@ Lunar - + CGraphicsView - + New Event Nová udalosť @@ -137,12 +135,12 @@ CMonthView - + New event Nová udalosť - + New Event Nová udalosť @@ -186,273 +184,273 @@ New event type - + Nový typ udalosti CScheduleDlg - - - + + + New Event Nová udalosť - + Edit Event Upraviť udalosť - + End time must be greater than start time Čas ukončenia musí byť neskôr ako čas začiatku - + OK button OK - - - - - - + + + + + + Never Nikdy - + At time of event V čase udalosti - + 15 minutes before 15 minút pred - + 30 minutes before 30 minút pred - + 1 hour before 1 hodinu pred - - + + 1 day before 1 deň pred - - + + 2 days before 2 dni pred - - + + 1 week before 1 týždeň pred - + On start day (9:00 AM) V deň začiatku (9:00) - + + + + + time(s) + krát + + + Enter a name please - + - + The name can not only contain whitespaces - + - - + + Type: Typ: - - + + Description: Popis: - - + + All Day: Celý deň: - - + + Starts: Začína: - - + + Ends: Končí: - - + + Remind Me: Pripomenúť - - + + Repeat: Opakovať: - - + + End Repeat: Ukončiť opakovanie: - + Calendar account: - + - + Calendar account - + - + Type Typ - + Description Popis - + All Day Celý deň - + Time: - + Čas: - + Time - + Čas - + Solar - + - + Lunar - + - + Starts Začína - + Ends Končí - + Remind Me Pripomenúť - + Repeat Opakovať - - + + Daily Denne - - + + Weekdays Pracovné dni - - + + Weekly Týždenne - - - + + + Monthly Mesačne - - - + + + Yearly Ročne - + End Repeat Ukončiť opakovanie - + After Po - + On Zapnuté - - - - - time(s) - krát - - - + Cancel button Zrušiť - + Save button Uložiť @@ -461,125 +459,125 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Všetky výskyty opakujúcej sa udalosti musia mať rovnaký celodenný stav. - - + + Do you want to change all occurrences? Chcete zmeniť všetky výskyty? + + + + + + Cancel + button + Zrušiť + + + + Change All Zmeniť všetky - + You are changing the repeating rule of this event. Meníte pravidlo opakovania tejto udalosti. - - - + + + You are deleting an event. Odstraňujete udalosť. - + Are you sure you want to delete this event? Naozaj chcete odstrániť túto udalosť? - - - - - - - - Cancel - button - Zrušiť - - - + Delete button Vymazať - + Do you want to delete all occurrences of this event, or only the selected occurrence? Chcete odstrániť všetky výskyty tejto udalosti alebo iba vybratú udalosť? - + Delete All Vymazať všetko - - + + Delete Only This Event Vymazať iba túto udalosť - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Chcete odstrániť tento a všetky budúce výskyty tejto udalosti alebo iba vybratú udalosť? - + Delete All Future Events Vymazať všetky budúce udalosti - - + + You are changing a repeating event. Meníte opakujúcu sa udalosť. - + Do you want to change only this occurrence of the event, or all occurrences? Chcete zmeniť iba tento výskyt udalosti alebo všetky jej výskyty? - + All Všetky - - + + Only This Event Iba táto udalosť - + Do you want to change only this occurrence of the event, or this and all future occurrences? Chcete zmeniť iba tento výskyt udalosti alebo túto a aj všetky budúce udalosti? - + All Future Events Všetky budúce udalosti - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + - + OK button - OK + OK @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY CELÝ DEŇ @@ -637,59 +635,95 @@ CSettingDialog - + Sunday - Nedeľa + Nedeľa - + Monday - Pondelok + Pondelok + + + Tuesday + - + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock - + 24-hodinový čas - + 12-hour clock - + 12-hodinový čas + + + + import ICS file + - + Manual - + Ručné - + 15 mins - + 15 minút - + 30 mins - + 30 minút - + 1 hour - + 1 hodina - + 24 hours - + 24 hodín - + Sync Now - + Synchronizovať teraz - + Last sync - + + + + + Please go to the <a href='/'>Control Center</a> to change system settings + @@ -697,17 +731,17 @@ (%1 mins) - + (%1 minút) (%1 hour) - + (%1 hodina) (%1 hours) - + (%1 hodín) @@ -736,7 +770,7 @@ Search events and festivals - + @@ -744,48 +778,48 @@ Sun - + Ne Mon - + Po Tue - + Ut Wed - + St Thu - + Št Fri - + Pia Sat - + So CWeekWindow - + Week Týždeň - + Y R @@ -807,7 +841,7 @@ CYearWindow - + Y R @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Kalendár - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Kalendár je nástroj na prezeranie dátumov a tiež inteligentný denný plánovač na plánovanie všetkých vecí v živote. @@ -828,34 +862,34 @@ Calendarmainwindow - + Calendar Kalendár - + Manage - + Spravovať - + Privacy Policy - + Zásady ochrany osobných údajov - + Syncing... - + Synchronizácia... - + Sync successful - + Synchronizácia úspešná - + Sync failed, please try later - + @@ -869,85 +903,64 @@ DAccountDataBase - Work - Práca + Práca - Life - Život + Život - Other - Ostatné + Ostatné DAlarmManager - - - - Close button - + Zavrieť - One day before start - + Jeden deň pred začiatkom - Remind me tomorrow - + Pripomenúť zajtra - Remind me later - + Pripomenúť neskôr - 15 mins later - + o 15 minút neskôr - 1 hour later - + o 1 hodinu neskôr - 4 hours later - + o 4 hodiny neskôr - - - Tomorrow - + Zajtra - Schedule Reminder - + Nastaviť pripomienku - - %1 to %2 - + %1 do %2 - - Today - Dnes + Dnes @@ -976,98 +989,108 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + - + All events under this type will be deleted and cannot be recovered. - + - + Cancel button - Zrušiť + Zrušiť - + Delete button - Vymazať + Vymazať QObject - + + + Manage calendar + + + + + + Event types + + + + Account settings - + Nastavenia účtu - + Account - + Účet - + Select items to be synced - + - + Events - + Udalosti - - + + General settings - + Všeobecné nastavenia - + Sync interval - + - - - Manage calendar - - - - + Calendar account - - - - - - Event types - + - + General - + Hlavné - + First day of week - + - + Time - + Čas Return - + Today Return Dnes @@ -1078,7 +1101,7 @@ - + Today Return Today Dnes @@ -1087,46 +1110,57 @@ ScheduleTypeEditDlg - + + New event type - + Nový typ udalosti - + Edit event type - + Upraviť typ udalosti + + + + Import ICS file + - + Name: - + Názov: - + Color: - + Farba: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> súbor: + + + Cancel button - Zrušiť + Zrušiť - + Save button - Uložiť + Uložiť The name can not only contain whitespaces - + - + Enter a name please - + @@ -1172,12 +1206,12 @@ Y - R + R M - M + M @@ -1186,7 +1220,7 @@ Go button - + Prejsť @@ -1195,19 +1229,19 @@ Sign In button - + Prihlásiť sa Sign Out button - + Odhlásiť sa YearFrame - + Y R @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Dnes - + \ No newline at end of file diff --git a/translations/dde-calendar_sl.ts b/translations/dde-calendar_sl.ts index e261ac84..9341318e 100644 --- a/translations/dde-calendar_sl.ts +++ b/translations/dde-calendar_sl.ts @@ -42,19 +42,19 @@ Color - + Barva Cancel button - Prekini + Prekliči Save button - Shrani + Shrani @@ -137,12 +137,12 @@ CMonthView - + New event Nov dogodek - + New Event Nov dogodek @@ -267,6 +267,14 @@ On start day (9:00 AM) Na dan dogodka (9:00) + + + + + + time(s) + čas (s) + Enter a name please @@ -358,7 +366,7 @@ Time - + Čas @@ -437,14 +445,6 @@ On Na - - - - - - time(s) - čas (s) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? Želite spremeniti vsa pojavljanja? + + + + + + + + + Cancel + button + Prekini + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Želite res izbrisati ta dogodek? - - - - - - - - - Cancel - button - Prekini - Delete @@ -579,7 +579,7 @@ OK button - V redu + V redu @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY CEL DAN @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - Nedelja + Nedelja - + Monday - Ponedeljek + Ponedeljek + + + + Tuesday + Torek - + + Wednesday + Sreda + + + + Thursday + Četrtek + + + + Friday + Petek + + + + Saturday + Sobota + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + Ročno + + + 15 mins - + 30 mins - + 1 hour - + 1 ura - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + Ned Mon - + Pon Tue - + Tor Wed - + Sre Thu - + Čet Fri - + Pet Sat - + Sob @@ -807,7 +842,7 @@ CYearWindow - + Y L @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Koledar - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Koledar je orodje za prikaz datumov, a tudi pametni terminski planer za načrtovanje življenjskih dogodkov. @@ -840,12 +875,12 @@ Privacy Policy - + Pravilnik zasebnosti Syncing... - + Sinhronizacija... @@ -871,17 +906,17 @@ Work - Delo + o Life - Življenje + ivljenje Other - Drugo + Ostalo @@ -893,22 +928,22 @@ Close button - + Zapri One day before start - + Dan pred pričetkom Remind me tomorrow - + Opomni me jutri Remind me later - + Opomni me kasneje @@ -930,24 +965,24 @@ Tomorrow - + Jutri Schedule Reminder - + Nastavi opomnik %1 to %2 - + %1 do %2 Today - Danes + Danes @@ -976,98 +1011,108 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Prekini + Prekliči - + Delete button - Izbriši + Izbriši QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + Račun + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + Splošno - + First day of week - + Time - + Čas Return - + Today Return Danes @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - - Name: + + Import ICS file - + + Name: + Ime: + + + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - Prekini + Prekliči - + Save button - Shrani + Shrani @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - + L M - M + M @@ -1195,19 +1251,19 @@ Sign In button - + Prijava Sign Out button - + Odjava YearFrame - + Y Y @@ -1221,8 +1277,8 @@ - - + + Today Today Danes diff --git a/translations/dde-calendar_sq.ts b/translations/dde-calendar_sq.ts index 2f9babd9..971f74e2 100644 --- a/translations/dde-calendar_sq.ts +++ b/translations/dde-calendar_sq.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Llogari vendore - + Event types - Lloje veprimtarish + Lloje veprimtarish @@ -121,7 +119,7 @@ CGraphicsView - + New Event Veprimtari e Re @@ -137,12 +135,12 @@ CMonthView - + New event Veprimtari e re - + New Event Veprimtari e Re @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Veprimtari e Re - + Edit Event Përpunoni Veprimtari - + End time must be greater than start time Koha e përfundimit duhet të jetë më e madhe se koha e fillimit - + OK button OK - - - - - - + + + + + + Never Kurrë - + At time of event Në kohën e veprimtarisë - + 15 minutes before 15 minuta para - + 30 minutes before 30 minuta para - + 1 hour before 1 orë para - - + + 1 day before 1 ditë para - - + + 2 days before 2 ditë para - - + + 1 week before 1 javë para - + On start day (9:00 AM) Ditën e fillimit (9:00 AM) - - - + + + time(s) kohë(ra) - + Enter a name please Ju lutemi, jepni një emër - + The name can not only contain whitespaces Emri s’mund të përmbajë vetëm hapësira të zbrazëta - - + + Type: Lloj: - - + + Description: Përshkrim: - - + + All Day: Tërë Ditën: - - + + Starts: Fillon më: - - + + Ends: Përfundon më: - - + + Remind Me: Kujtoma: - - + + Repeat: Përsërite: - - + + End Repeat: Përfundoje Përsëritjen më: - + Calendar account: Llogari Kalendari: - + Calendar account Llogari Kalendari - + Type Lloj - + Description Përshkrim - + All Day Tërë Ditën - + Time: Kohë: - + Time Kohë - + Solar Diellore - + Lunar Hënore - + Starts Fillon më - + Ends Përfundon më - + Remind Me Kujtoma më - + Repeat Përsërite - - + + Daily Ditore - - + + Weekdays Ditë të javës - - + + Weekly Javore - - - + + + Monthly Mujore - - - + + + Yearly Vjetore - + End Repeat Përfundoje Përsëritjen Më - + After Pas - + On - + Cancel button Anuloje - + Save button Ruaje @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. Krejt përsëritjet e një veprimtarie që përsëritet duhet të kenë të njëjtën gjendje gjithë-ditën. - - + + Do you want to change all occurrences? Doni të ndryshohen krejt përsëritjet? - - - - - - - + + + + + + + Cancel button Anuloje - - + + Change All Ndryshoji Krejt - + You are changing the repeating rule of this event. Po ndryshoni rregullin e përsëritjes së kësaj veprimtarie. - - - + + + You are deleting an event. Po fshini një veprimtari. - + Are you sure you want to delete this event? Jeni i sigurt se doni të fshihet kjo veprimtari? - + Delete button Fshije - + Do you want to delete all occurrences of this event, or only the selected occurrence? Doni të fshihen krejt përsëritjet e kësaj veprimtarie, apo vetëm përsëritjen e përzgjedhur? - + Delete All Fshiji Krejt - - + + Delete Only This Event Fshi Vetëm Këtë Veprimtari - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Doni të fshihet kjo dhe krejt përsëritjet në të ardhmen të kësaj veprimtarie, apo vetëm përsëritjen e përzgjedhur? - + Delete All Future Events Fshi Krejt Veprimtaritë e Ardhshme - - + + You are changing a repeating event. Po ndryshoni një veprimtari me përsëritje. - + Do you want to change only this occurrence of the event, or all occurrences? Doni të ndryshohet vetëm kjo përsëritje e veprimtarisë, apo krejt përsëritjet? - + All Krejt - - + + Only This Event Vetëm Këtë Veprimtari - + Do you want to change only this occurrence of the event, or this and all future occurrences? Doni të ndryshohet vetëm kjo përsëritje e veprimtarisë, apo këtë dhe krejt përsëritjet në të ardhmen? - + All Future Events Krejt Veprimtaritë e Ardhshme - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Keni përzgjedhur një muaj të brishtë dhe do t’ju kujtohet në përputhje me rregullat e kalendarit hënor. - + OK button OK @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY TËRË DITËN @@ -637,60 +635,96 @@ CSettingDialog - + Sunday E diel - + Monday E hënë - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + Përdor Rregullime Sistemi + + + 24-hour clock Sahat 24-orësh - + 12-hour clock Sahat 12-orësh - + + import ICS file + importo kartelë ICS + + + Manual Dorazi - + 15 mins 15 min. - + 30 mins 30 min. - + 1 hour 1 orë - + 24 hours 24 orë - + Sync Now Njëkohësoje Tani - + Last sync Njëkohësimi i fundit + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -780,12 +814,12 @@ CWeekWindow - + Week Javë - + Y V @@ -807,7 +841,7 @@ CYearWindow - + Y V @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Kalendar - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Kalendari është një mjet për parje datash, dhe gjithashtu edhe një planifikues i përditshëm për të vënë në plan krejt gjërat e jetës së përditshme. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Kalendar - + Manage Administrojeni - + Privacy Policy Rregulla Privatësie - + Syncing... Po njëkohësohet… - + Sync successful Njëkohësim i suksesshëm - + Sync failed, please try later Njëkohësimi dështoi, ju lutemi, provoni më vonë @@ -869,85 +903,64 @@ DAccountDataBase - Work - + Pune - Life - + Shtëpie - Other - + Tjetër DAlarmManager - - - - Close button - + Mbylle - One day before start - + Një ditë para fillimit - Remind me tomorrow - + Kujtoma nesër - Remind me later - + Kujtoma më vonë - 15 mins later - + pas 15 minutash - 1 hour later - + pas 1 ore - 4 hours later - + pas 4 orësh - - - Tomorrow - + Nesër - Schedule Reminder - + Kujtues Planesh - - %1 to %2 - + %1 deri më %2 - - Today - Sot + Sot @@ -976,23 +989,33 @@ JobTypeListView - + + export + eksportim + + + + import ICS file + importo kartelë ICS + + + You are deleting an event type. Po fshini një lloj veprimtarish. - + All events under this type will be deleted and cannot be recovered. Krejt veprimtaritë nën këtë lloj do të fshihen dhe s’mund të rikthehen. - + Cancel button Anuloje - + Delete button Fshije @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Administroni kalendar - - + + Event types Lloje veprimtarish - + Account settings Rregullime llogarie - + Account Llogari - + Select items to be synced Përzgjidhni objekte për t’u njëkohësuar - + Events Veprimtari - - + + General settings Rregullime të përgjithshme - + Sync interval Interval njëkohësimi - + Calendar account Llogari Kalendari - + General Të përgjithshme - + First day of week Ditën e parë të javës - + Time Kohë @@ -1067,7 +1090,7 @@ Return - + Today Return Sot @@ -1078,7 +1101,7 @@ - + Today Return Today Sot @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Lloj i ri veprimtarie - + Edit event type Përpunoni lloj veprimtarie - + + Import ICS file + Importo kartelë ICS + + + Name: Emër: - + Color: Ngjyrë: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + Kartelë <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a>: + + + Cancel button Anuloje - + Save button Ruaje @@ -1124,7 +1158,7 @@ Emri s’mund të përmbajë vetëm hapësira të zbrazëta - + Enter a name please Ju lutemi, jepni një emër @@ -1207,7 +1241,7 @@ YearFrame - + Y V @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Sot - + \ No newline at end of file diff --git a/translations/dde-calendar_sr.ts b/translations/dde-calendar_sr.ts index 1a11ee71..be342053 100644 --- a/translations/dde-calendar_sr.ts +++ b/translations/dde-calendar_sr.ts @@ -42,19 +42,19 @@ Color - + Боја Cancel button - Откажи + Откажи Save button - Сачувај + Сачувај @@ -115,7 +115,7 @@ Lunar - + Лунарно @@ -137,12 +137,12 @@ CMonthView - + New event Нови догађај - + New Event Нови догађај @@ -267,6 +267,14 @@ On start day (9:00 AM) На дан почетка (9:00 АМ) + + + + + + time(s) + пут(а) + Enter a name please @@ -358,7 +366,7 @@ Time - + Време @@ -368,7 +376,7 @@ Lunar - + Лунарно @@ -437,14 +445,6 @@ On Укључ. - - - - - - time(s) - пут(а) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? Желите ли да промените све појаве? + + + + + + + + + Cancel + button + Откажи + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Заиста желите да обришете овај догађај? - - - - - - - - - Cancel - button - Откажи - Delete @@ -579,7 +579,7 @@ OK button - У реду + У реду @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY ЦЕО ДАН @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - Недеља + Недеља - + Monday - Понедељак + Понедељак + + + + Tuesday + Уторак + + + + Wednesday + Среда + + + + Thursday + Четвртак + + + + Friday + Петак + + + + Saturday + Субота - + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + Ручно + + + 15 mins - + 30 mins - + 1 hour - + 1 сат - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -744,37 +779,37 @@ Sun - + Нед Mon - + Пон Tue - + уто Wed - + Сре Thu - + чет Fri - + Пет Sat - + Суб @@ -807,7 +842,7 @@ CYearWindow - + Y Г @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Календар - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Календар је алат за приказ датума и паметани роковник за подсећање на све догађаје у животу. @@ -840,12 +875,12 @@ Privacy Policy - + Политика приватности Syncing... - + Синхронизација... @@ -871,17 +906,17 @@ Work - Посао + Посао Life - Живот + Живот Other - Остало + Остало @@ -893,22 +928,22 @@ Close button - + Затвори One day before start - + Један дан пре пчетка Remind me tomorrow - + Подсети ме сутра Remind me later - + Подсети касније @@ -930,24 +965,24 @@ Tomorrow - + Сутра Schedule Reminder - + Подсетник догађаја %1 to %2 - + %1 до %2 Today - Данас + Данас @@ -976,98 +1011,108 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Откажи + Откажи - + Delete button - Обриши + Обриши QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + Налог + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + Опште - + First day of week - + Time - + Време Return - + Today Return Данас @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - - Name: + + Import ICS file - + + Name: + Име: + + + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - Откажи + Откажи - + Save button - Сачувај + Сачувај @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - Г + Г M - М + М @@ -1195,19 +1251,19 @@ Sign In button - + Пријави се Sign Out button - + Одајави се YearFrame - + Y Г @@ -1221,8 +1277,8 @@ - - + + Today Today Данас diff --git a/translations/dde-calendar_th.ts b/translations/dde-calendar_th.ts index 4c6464e4..a472c0e7 100644 --- a/translations/dde-calendar_th.ts +++ b/translations/dde-calendar_th.ts @@ -48,13 +48,13 @@ Cancel button - ยกเลิก + ยกเลิก Save button - บันทึก + บันทึก @@ -137,12 +137,12 @@ CMonthView - + New event เหตุการณ์ใหม่ - + New Event กิจกรรมใหม่ @@ -267,6 +267,14 @@ On start day (9:00 AM) ทําการในเวลา (09:00 น.) + + + + + + time(s) + เวลา (s) + Enter a name please @@ -437,14 +445,6 @@ On - - - - - - time(s) - เวลา (s) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? คุณต้องการเปลี่ยนกิจกรรมทั้งหมดหรือไม่? + + + + + + + + + Cancel + button + ยกเลิก + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? คุณแน่ใจหรือไม่ว่าคุณต้องการที่จะลบกิจกรรมนี้ - - - - - - - - - Cancel - button - ยกเลิก - Delete @@ -579,7 +579,7 @@ OK button - ตกลง + ตกลง @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY ทั้งวัน @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - วันอาทิตย์ + วันอาทิตย์ - + Monday - วันจันทร์ + วันจันทร์ + + + + Tuesday + วันอังคาร + + + + Wednesday + วันพุธ + + + + Thursday + วันพฤหัสบดี + + + + Friday + วันศุกร์ + + + + Saturday + วันศุกร์ - + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + แมนนวล + + + 15 mins - + 30 mins - + 1 hour - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -807,7 +842,7 @@ CYearWindow - + Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar ปฏิทิน - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. ปฏิทินเป็นเครื่องมือในการดูวันที่และยังเป็นนักวางแผนรายวันที่ชาญฉลาดเพื่อกำหนดเวลาทุกสิ่งในชีวิต @@ -871,17 +906,17 @@ Work - งาน + งาน Life - ชีวิต + ชีวิต Other - อื่น ๆ + อื่น ๆ @@ -893,7 +928,7 @@ Close button - + ปิด @@ -947,7 +982,7 @@ Today - วันนี้ + วันนี้ @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - ยกเลิก + ยกเลิก - + Delete button - ลบ + ลบ QObject - - Account settings + + + Manage calendar + + + + + + Event types + Account settings + + + + Account - + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + ทั่วไป - + First day of week - + Time @@ -1067,7 +1112,7 @@ Return - + Today Return วันนี้ @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - + + Import ICS file + + + + Name: - + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - ยกเลิก + ยกเลิก - + Save button - บันทึก + บันทึก @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - + M - + @@ -1207,7 +1263,7 @@ YearFrame - + Y @@ -1221,8 +1277,8 @@ - - + + Today Today วันนี้ diff --git a/translations/dde-calendar_tr.ts b/translations/dde-calendar_tr.ts index d58b20de..fd184f33 100644 --- a/translations/dde-calendar_tr.ts +++ b/translations/dde-calendar_tr.ts @@ -6,7 +6,7 @@ Sync successful - Senkronizasyon başarılı + Eşitleme başarılı @@ -34,7 +34,7 @@ Event types - Etkinlik türleri + Etkinlik türleri @@ -137,12 +137,12 @@ CMonthView - + New event Yeni etkinlik - + New Event Yeni Etkinlik @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY TÜM GÜN @@ -637,60 +637,95 @@ CSettingDialog - + Sunday Pazar - + Monday Pazartesi - + + Tuesday + Salı + + + + Wednesday + Çarşamba + + + + Thursday + Perşembe + + + + Friday + Cuma + + + + Saturday + Cumartesi + + + 24-hour clock 24 saatlik zaman - + 12-hour clock 12 saatlik zaman - + + import ICS file + ICS dosyasını içeri aktar + + + Manual Manuel - + 15 mins 15 Dakika - + 30 mins 30 Dakika - + 1 hour 1 Saat - + 24 hours 24 Saat - + Sync Now Şimdi senkronize et - + Last sync Son senkronizasyon + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -807,7 +842,7 @@ CYearWindow - + Y Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Takvim - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Takvim tarihleri ​​görüntülemek için bir araçtır ve aynı zamanda hayattaki her şeyi planlamak için akıllı bir günlük planlayıcısıdır. @@ -871,17 +906,17 @@ Work - + Çalışma Life - + Yaşam Other - + Diğer @@ -893,61 +928,61 @@ Close button - + Kapat One day before start - + Başlamadan bir gün önce Remind me tomorrow - + Bana yarın hatırlat Remind me later - + Bana daha sonra hatırlat 15 mins later - + 15 Dakika sonra 1 hour later - + 1 Saat sonra 4 hours later - + 4 Saat sonra Tomorrow - + Yarın Schedule Reminder - + Zamanlama hatırlatıcısı %1 to %2 - + %1 ila %2 Today - Bugün + Bugün @@ -976,23 +1011,33 @@ JobTypeListView - + + export + dışarı aktar + + + + import ICS file + ICS dosyasını içeri aktar + + + You are deleting an event type. Bir etkinlik türünü siliyorsunuz. - + All events under this type will be deleted and cannot be recovered. Bu türün altındaki etkinlikler silinir ve geri getirilemez. - + Cancel button İptal - + Delete button Sil @@ -1001,65 +1046,65 @@ QObject - - + + Manage calendar Takvimi yönet - - + + Event types Etkinlik türleri - + Account settings Hesap ayarları - + Account Hesap - + Select items to be synced Senkronize edilecek öğeyi seçin - + Events Etkinlikler - - + + General settings Genel ayarlar - + Sync interval Senkronizasyon aralığı - + Calendar account Takvim hesabı - + General Genel - + First day of week Haftanın ilk günü - + Time Zaman @@ -1067,7 +1112,7 @@ Return - + Today Return Bugün @@ -1087,33 +1132,44 @@ ScheduleTypeEditDlg - + + New event type Yeni etkinlik türü - + Edit event type Etkinlik türünü düzenle - + + Import ICS file + ICS dosyasını içeri aktar + + + Name: Ad: - + Color: Renk: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> Dosyası: + + + Cancel button İptal - + Save button Kaydet @@ -1124,7 +1180,7 @@ Ad sadece boşluk karakterlerinden oluşamaz - + Enter a name please Lütfen bir ad girin @@ -1207,7 +1263,7 @@ YearFrame - + Y Y @@ -1221,8 +1277,8 @@ - - + + Today Today Bugün diff --git a/translations/dde-calendar_ug.ts b/translations/dde-calendar_ug.ts index f261b23d..d75cbc14 100644 --- a/translations/dde-calendar_ug.ts +++ b/translations/dde-calendar_ug.ts @@ -6,22 +6,22 @@ Sync successful - + ماس قەدەملەندى Network error - + تور خاتالىقى Server exception - + مۇلازىمىتېر نورمالسىز Storage full - + بوشلۇق توشۇپ كەتتى @@ -29,12 +29,12 @@ Local account - + يەرلىك ھېسابات Event types - + كۈنتەرتىپ تۈرى @@ -42,19 +42,19 @@ Color - + رەڭ Cancel button - بىكار قىلىش + بىكار قىلىش Save button - ساقلاش + ساقلاش @@ -115,7 +115,7 @@ Lunar - + دېھقانلار كالېندارى @@ -137,12 +137,12 @@ CMonthView - + New event كۈنتەرتىپ قۇرۇش - + New Event يېڭى كۈنتەرتىپ قۇرۇش @@ -186,7 +186,7 @@ New event type - + كۈنتەرتىپ تۈرى قوشۇش @@ -267,21 +267,29 @@ On start day (9:00 AM) كۈنتەرتىپ باشلانغان كۈن (چۈشتىن بۇرۇن 9 دا) + + + + + + time(s) + ۋاقىت + Enter a name please - + نام قۇرۇق قالمىسۇن The name can not only contain whitespaces - + نامنىڭ ھەممىسى بوشلۇق بولسا بولمايدۇ، ئۆزگەرتىڭ Type: - تىپى: + تۈرى: @@ -328,17 +336,17 @@ Calendar account: - + كالېندار ھېساباتى: Calendar account - + كالېندار ھېساباتى: Type - تىپ + تۈر @@ -353,22 +361,22 @@ Time: - + ۋاقىت: Time - + ۋاقىت Solar - + مىلادىيە كالېندارى Lunar - + دېھقانلار كالېندارى @@ -437,14 +445,6 @@ On غىچە ۋاقىت - - - - - - time(s) - ۋاقىت - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? بارلىق تەكرارلاشلارنى ئۆزگەرتمەكچىمۇ؟ + + + + + + + + + Cancel + button + بىكار قىلىش + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? بۇ كۈنتەرتىپنى ئۆچۈرمەكچىمۇ؟ - - - - - - - - - Cancel - button - بىكار قىلىش - Delete @@ -573,13 +573,13 @@ You have selected a leap month, and will be reminded according to the rules of the lunar calendar. - + تاللىغىنىڭىز كەبىسە ئېيى، دېھقانلار كالېندارى بويىچە ئەسكەرتىدۇ OK button - تامام + جەزىملەشتۈرۈش @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY پۈتۈن كۈن @@ -637,58 +637,93 @@ CSettingDialog - + Sunday - يەكشەنبە + يەكشەنبە - + Monday - دۈشەنبە + دۈشەنبە + + + + Tuesday + سەيشەنبە + + + + Wednesday + چارشەنبە - + + Thursday + پەيشەنبە + + + + Friday + جۈمە + + + + Saturday + شەنبە + + + 24-hour clock - + 24 سائەتلىك - + 12-hour clock + 12 سائەتلىك + + + + import ICS file - + Manual - + قولدا - + 15 mins - + ھەر 15 مىنۇتتا - + 30 mins - + ھەر 30 مىنۇتتا - + 1 hour - + ھەر 1 سائەتتە - + 24 hours - + ھەر 24 سائەتتە - + Sync Now - + ماس قەدەملەش - + Last sync + يېقىنقى ماس قەدەملىگەن ۋاقىت + + + + Please go to the <a href='/'>Control Center</a> to change settings @@ -697,17 +732,17 @@ (%1 mins) - + (%1 مىنۇت) (%1 hour) - + (%1 سائەت) (%1 hours) - + (%1 سائەت) @@ -736,7 +771,7 @@ Search events and festivals - + كۈنتەرتىپ/بايرام ئىزدەش @@ -744,37 +779,37 @@ Sun - + كۈن Mon - + دۈشەنبە Tue - + سەيشەنبە Wed - + چارشەنبە Thu - + پەيشەنبە Fri - + جۈمە Sat - + شەنبە @@ -807,7 +842,7 @@ CYearWindow - + Y يىلى @@ -815,12 +850,12 @@ CalendarWindow - + Calendar كالېندار - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. كالېندار چېسلا كۆرۈش، كۈنتەرتىپ باشقۇرۇشتا ئىشلىتىلىدىغان كىچىك قورال. @@ -835,27 +870,27 @@ Manage - + باشقۇرۇش Privacy Policy - + شەخسىيەت سىياسىتى Syncing... - + ماس قەدەملەۋاتىدۇ... Sync successful - + ماس قەدەملەندى Sync failed, please try later - + ماس قەدەملەنمىدى، قايتا سىناڭ @@ -871,17 +906,17 @@ Work - خىزمەت + Work Life - تۇرمۇش + Life Other - باشقا + Other @@ -893,61 +928,61 @@ Close button - + تاقاش One day before start - + 1 كۈن بۇرۇن ئەسكەرتىش Remind me tomorrow - + ئەتە ئەسكەرتسۇن Remind me later - + بىر ئازدىن كېيىن ئەسكەرتىش 15 mins later - + 15 مىنۇتتىن كېيىن 1 hour later - + 1 سائەتىن كېيىن 4 hours later - + 4 سائەتىن كېيىن Tomorrow - + ئەتە Schedule Reminder - + كۈنتەرتىپ ئەسكەرتىشى %1 to %2 - + %1 دىن %2 گىچە Today - + Today @@ -976,98 +1011,108 @@ JobTypeListView - - You are deleting an event type. + + export - - All events under this type will be deleted and cannot be recovered. + + import ICS file - + + You are deleting an event type. + كۈنتەرت تۈرىنى ئۆچۈرۈۋاتىسىز. + + + + All events under this type will be deleted and cannot be recovered. + بۇ كۈنتەرتىپ تۈرى ئاستىدىكى بارلىق كۈنتەرتىپ ئۆچۈرۈلىدۇ ھەمدە ئەسلىگە كەلتۈرگىلى بولمايدۇ + + + Cancel button - بىكار قىلىش + بىكار قىلىش - + Delete button - ئۆچۈرۈش + ئۆچۈرۈش QObject - - Account settings - + + + Manage calendar + كالېندار باشقۇرۇش + + + + + Event types + كالېندار تۈرى + Account settings + ھېسابات تەڭشىكى + + + Account - + ھېسابات - + Select items to be synced - + ماس قەدەملەيدىغان تۈرلەرنى تەڭشەڭ - + Events - + كۈنتەرتىپ - - + + General settings - + ئادەتتىكى تەڭشەكلەر - + Sync interval - + ماس قەدەملەش چاستوتىسى - - - Manage calendar - - - - + Calendar account - - - - - - Event types - + كالېندار ھېساباتى: - + General - + ئۇنىۋېرسال - + First day of week - + ھەپتە قايسى كۈندىن باشلانسۇن - + Time - + ۋاقىت Return - + Today Return بۈگۈنگە قايتىش @@ -1087,46 +1132,57 @@ ScheduleTypeEditDlg - + + New event type - + كۈنتەرتىپ تۈرى قوشۇش - + Edit event type + كۈنتەرتىپ تۈرىنى تەھرىرلەش + + + + Import ICS file - + Name: - + نامى: - + Color: + رەڭ: + + + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: - + Cancel button - بىكار قىلىش + بىكار قىلىش - + Save button - ساقلاش + ساقلاش The name can not only contain whitespaces - + نامنىڭ ھەممىسى بوشلۇق بولسا بولمايدۇ، ئۆزگەرتىڭ - + Enter a name please - + نام قۇرۇق قالمىسۇن @@ -1172,12 +1228,12 @@ Y - + يىلى M - ئاي + ئاي @@ -1186,7 +1242,7 @@ Go button - + ئاتلاش @@ -1195,19 +1251,19 @@ Sign In button - + كىرىش Sign Out button - + چېكىنىش YearFrame - + Y يىلى @@ -1221,8 +1277,8 @@ - - + + Today Today بۈگۈن diff --git a/translations/dde-calendar_uk.ts b/translations/dde-calendar_uk.ts index 47ba7ac4..39b7c3e9 100644 --- a/translations/dde-calendar_uk.ts +++ b/translations/dde-calendar_uk.ts @@ -1,6 +1,4 @@ - - - + AccountItem @@ -27,14 +25,14 @@ AccountManager - + Local account Локальний обліковий запис - + Event types - Типи подій + Типи подій @@ -121,7 +119,7 @@ CGraphicsView - + New Event Нова подія @@ -137,12 +135,12 @@ CMonthView - + New event Нова подія - + New Event Нова подія @@ -192,267 +190,267 @@ CScheduleDlg - - - + + + New Event Нова подія - + Edit Event Редагування події - + End time must be greater than start time Кінцевий час не повинен передувати початковому часу - + OK button Гаразд - - - - - - + + + + + + Never Ніколи - + At time of event У момент події - + 15 minutes before За 15 хвилин до події - + 30 minutes before За 30 хвилин до події - + 1 hour before За годину до події - - + + 1 day before За день до події - - + + 2 days before За 2 дні до події - - + + 1 week before За тиждень до події - + On start day (9:00 AM) У день початку (9:00) - - - + + + time(s) раз(ів) - + Enter a name please Будь ласка, введіть назву - + The name can not only contain whitespaces Назва не може складатися лише з пробілів - - + + Type: Тип: - - + + Description: Опис: - - + + All Day: Весь день: - - + + Starts: Починається: - - + + Ends: Завершується: - - + + Remind Me: Нагадати мені: - - + + Repeat: Повторення: - - + + End Repeat: Завершити повтори: - + Calendar account: Обліковий запис календаря: - + Calendar account Обліковий запис календаря - + Type Тип - + Description Опис - + All Day Весь день - + Time: Час: - + Time Час - + Solar Сонячний - + Lunar Місячний - + Starts Починається - + Ends Кінці - + Remind Me Нагадати мені - + Repeat Повторення - - + + Daily Щодня - - + + Weekdays Дні тижня - - + + Weekly Щотижня - - - + + + Monthly Щомісяця - - - + + + Yearly Щорічно - + End Repeat Завершити повтори - + After Після - + On У - + Cancel button Скасувати - + Save button Зберегти @@ -461,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. В усіх повторень події має бути однаковий стан щодо заповнення подією усього дня. - - + + Do you want to change all occurrences? Хочете змінити усі повторення? - - - - - - - + + + + + + + Cancel button Скасувати - - + + Change All Змінити усі - + You are changing the repeating rule of this event. Ви змінюєте правило повторення цієї події. - - - + + + You are deleting an event. Ви вилучаєте запис події. - + Are you sure you want to delete this event? Ви впевнені, що бажаєте вилучити цей запис події? - + Delete button Вилучити - + Do you want to delete all occurrences of this event, or only the selected occurrence? Ви хочете вилучити усі повторення цієї події чи лише позначений запис? - + Delete All Вилучити всі - - + + Delete Only This Event Вилучити лише цей запис - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? Ви хочете вилучити усі майбутні повторення цієї події чи лише позначені записи? - + Delete All Future Events Вилучити усі майбутні повторення - - + + You are changing a repeating event. Ви вносите зміни до повторюваної події. - + Do you want to change only this occurrence of the event, or all occurrences? Хочете змінити лише це повторення події чи усі повторення? - + All Усі - - + + Only This Event Лише цей запис - + Do you want to change only this occurrence of the event, or this and all future occurrences? Хочете змінити лише це повторення події чи усі майбутні повторення? - + All Future Events Усі майбутні повторення - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. Вами вибрано високосний місяць. Вас буде попереджено відповідно до правил місячного календаря. - + OK button Гаразд @@ -629,7 +627,7 @@ CScheduleView - + ALL DAY УВЕСЬ ДЕНЬ @@ -637,60 +635,96 @@ CSettingDialog - + Sunday Неділя - + Monday Понеділок - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + + + + 24-hour clock 24-годинний формат часу - + 12-hour clock 12-годинний формат часу - + + import ICS file + імпортувати файл ICS + + + Manual Вручну - + 15 mins 15 хвилин - + 30 mins 30 хвилин - + 1 hour 1 година - + 24 hours 24 години - + Sync Now Синхронізувати зараз - + Last sync Остання синхронізація + + + Please go to the <a href='/'>Control Center</a> to change system settings + + CTimeEdit @@ -780,12 +814,12 @@ CWeekWindow - + Week Тиждень - + Y Р @@ -807,7 +841,7 @@ CYearWindow - + Y Р @@ -815,12 +849,12 @@ CalendarWindow - + Calendar Календар - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. «Календар» — інструмент для перегляду календаря дат, також чудовий планувальник для створення розкладів на кожен день. @@ -828,32 +862,32 @@ Calendarmainwindow - + Calendar Календар - + Manage Керувати - + Privacy Policy Правила конфіденційності - + Syncing... Синхронізація... - + Sync successful Успішна синхронізація - + Sync failed, please try later Помилка синхронізації. Будь ласка, повторіть спробу пізніше @@ -869,85 +903,64 @@ DAccountDataBase - Work - + Робота - Life - + Життя - Other - + Інше DAlarmManager - - - - Close button - + Закрити - One day before start - + За день до початку - Remind me tomorrow - + Нагадати мені завтра - Remind me later - + Нагадати мені пізніше - 15 mins later - + За 15 хвилин - 1 hour later - + За 1 годину - 4 hours later - + За 4 години - - - Tomorrow - + Завтра - Schedule Reminder - + Розклад нагадування - - %1 to %2 - + з %1 до %2 - - Today - Сьогодні + Сьогодні @@ -976,23 +989,33 @@ JobTypeListView - + + export + експортувати + + + + import ICS file + імпортувати файл ICS + + + You are deleting an event type. Ви вилучаєте тип події. - + All events under this type will be deleted and cannot be recovered. Усі події цього типу буде вилучено, їх не можна буде відновити. - + Cancel button Скасувати - + Delete button Вилучити @@ -1001,65 +1024,65 @@ QObject - - + + Manage calendar Керувати календарем - - + + Event types Типи подій - + Account settings Параметри облікового запису - + Account Обліковий запис - + Select items to be synced Виберіть записи для синхронізації - + Events Події - - + + General settings Загальні параметри - + Sync interval Інтервал синхронізації - + Calendar account Обліковий запис календаря - + General Загальне - + First day of week Перший день тижня - + Time Час @@ -1067,7 +1090,7 @@ Return - + Today Return Сьогодні @@ -1078,7 +1101,7 @@ - + Today Return Today Сьогодні @@ -1087,33 +1110,44 @@ ScheduleTypeEditDlg - + + New event type Новий тип події - + Edit event type Редагувати тип події - + + Import ICS file + Імпортувати файл ICS + + + Name: Назва: - + Color: Колір: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + Файл <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a>: + + + Cancel button Скасувати - + Save button Зберегти @@ -1124,7 +1158,7 @@ Назва не може складатися лише з пробілів - + Enter a name please Будь ласка, введіть назву @@ -1207,7 +1241,7 @@ YearFrame - + Y Р @@ -1219,13 +1253,13 @@ - - - - + + + + Today Today Сьогодні - + \ No newline at end of file diff --git a/translations/dde-calendar_vi.ts b/translations/dde-calendar_vi.ts index 7360e288..6a491bb6 100644 --- a/translations/dde-calendar_vi.ts +++ b/translations/dde-calendar_vi.ts @@ -48,13 +48,13 @@ Cancel button - Hủy + Hủy Save button - Lưu + Lưu @@ -137,12 +137,12 @@ CMonthView - + New event Sự kiện mới - + New Event Sự kiện mới @@ -267,6 +267,14 @@ On start day (9:00 AM) Bắt đầu lúc (9:00 AM) + + + + + + time(s) + thời gian(s) + Enter a name please @@ -437,14 +445,6 @@ On Mở - - - - - - time(s) - thời gian(s) - Cancel @@ -471,6 +471,18 @@ Do you want to change all occurrences? Bạn có muốn thay đổi tất cả các lần xuất hiện? + + + + + + + + + Cancel + button + Hủy + @@ -494,18 +506,6 @@ Are you sure you want to delete this event? Bạn có muốn xóa sự kiện này không - - - - - - - - - Cancel - button - Hủy - Delete @@ -579,7 +579,7 @@ OK button - OK + OK @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY Tất cả các ngày @@ -637,60 +637,95 @@ CSettingDialog - + Sunday - Chủ nhật + Chủ nhật - + Monday - Thứ hai + Thứ hai + + + + Tuesday + Thứ ba + + + + Wednesday + Thứ tư + + + + Thursday + Thứ năm + + + + Friday + Thứ sáu - + + Saturday + Thứ bảy + + + 24-hour clock - + 12-hour clock - - Manual + + import ICS file - + + Manual + Tự chỉnh + + + 15 mins - + 30 mins - + 1 hour - + 24 hours - + Sync Now - + Last sync + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -807,7 +842,7 @@ CYearWindow - + Y Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar Lịch - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. Lịch là một công cụ để xem ngày, và cũng là công cụ sắp xếp kế hoạch, sự kiện hàng ngày thông minh. @@ -840,12 +875,12 @@ Privacy Policy - + Chính sách bảo mật Syncing... - + Đồng bộ hóa... @@ -871,17 +906,17 @@ Work - Công việc + Công việc Life - Cuộc sống + Cuộc sống Other - Khác + Khác @@ -893,22 +928,22 @@ Close button - + Đóng lại One day before start - + Một ngày trước khi bắt đầu Remind me tomorrow - + Nhắc tôi ngày mai Remind me later - + Nhắc tôi sau @@ -930,12 +965,12 @@ Tomorrow - + Ngày mai Schedule Reminder - + Lịch trình nhắc nhở @@ -947,7 +982,7 @@ Today - Hôm nay + Hôm nay @@ -976,90 +1011,100 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. - + All events under this type will be deleted and cannot be recovered. - + Cancel button - Hủy + Hủy - + Delete button - Xóa + Xóa QObject - - Account settings + + + Manage calendar + + + + + + Event types - Account + Account settings - + + Account + Tài khoản + + + Select items to be synced - + Events - - + + General settings - + Sync interval - - - Manage calendar - - - - + Calendar account - - - Event types - - - - + General - + Tổng quát - + First day of week - + Time @@ -1067,7 +1112,7 @@ Return - + Today Return Hôm nay @@ -1087,36 +1132,47 @@ ScheduleTypeEditDlg - + + New event type - + Edit event type - - Name: + + Import ICS file - + + Name: + Tên: + + + Color: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button - Hủy + Hủy - + Save button - Lưu + Lưu @@ -1124,7 +1180,7 @@ - + Enter a name please @@ -1172,12 +1228,12 @@ Y - Y + Y M - M + M @@ -1195,19 +1251,19 @@ Sign In button - + Đăng nhập Sign Out button - + Đăng xuất YearFrame - + Y Y @@ -1221,8 +1277,8 @@ - - + + Today Today Hôm nay diff --git a/translations/dde-calendar_zh_CN.ts b/translations/dde-calendar_zh_CN.ts index f0106522..0e43def2 100644 --- a/translations/dde-calendar_zh_CN.ts +++ b/translations/dde-calendar_zh_CN.ts @@ -2,22 +2,22 @@ AccountItem - + Sync successful 同步成功 - + Network error 网络异常 - + Server exception 服务器异常 - + Storage full 存储已满 @@ -25,12 +25,12 @@ AccountManager - + Local account 本地帐户 - + Event types 日程类型 @@ -119,7 +119,7 @@ CGraphicsView - + New Event 新建日程 @@ -190,267 +190,267 @@ CScheduleDlg - - - + + + New Event 新建日程 - + Edit Event 编辑日程 - + End time must be greater than start time 结束时间需晚于开始时间 - + OK button 确 定 - - - - - - + + + + + + Never 从不 - + At time of event 日程开始时 - + 15 minutes before 15分钟前 - + 30 minutes before 30分钟前 - + 1 hour before 1小时前 - - + + 1 day before 1天前 - - + + 2 days before 2天前 - - + + 1 week before 1周前 - + On start day (9:00 AM) 日程发生当天(上午9点) - - - + + + time(s) 次后 - + Enter a name please 名称不能为空 - + The name can not only contain whitespaces 名称不能设置为全空格,请修改 - - + + Type: 类型: - - + + Description: 内容: - - + + All Day: 全天: - - + + Starts: 开始时间: - - + + Ends: 结束时间: - - + + Remind Me: 提醒: - - + + Repeat: 重复: - - + + End Repeat: 结束重复: - + Calendar account: 日历帐户: - + Calendar account 日历帐户 - + Type 类型 - + Description 内容 - + All Day 全天 - + Time: 时间: - + Time 时间 - + Solar 公历 - + Lunar 农历 - + Starts 开始时间 - + Ends 结束时间 - + Remind Me 提醒 - + Repeat 重复 - - + + Daily 每天 - - + + Weekdays 工作日 - - + + Weekly 每周 - - - + + + Monthly 每月 - - - + + + Yearly 每年 - + End Repeat 结束重复 - + After - + On 于日期 - + Cancel button 取 消 - + Save button 保 存 @@ -459,122 +459,122 @@ CScheduleOperation - + All occurrences of a repeating event must have the same all-day status. 重复日程的所有重复必须具有相同的全天状态。 - - + + Do you want to change all occurrences? 您要更改所有重复吗? - - - - - - - + + + + + + + Cancel button 取 消 - - + + Change All 全部更改 - + You are changing the repeating rule of this event. 您正在更改日程的重复规则。 - - - + + + You are deleting an event. 您正在删除日程。 - + Are you sure you want to delete this event? 您确定要删除此日程吗? - + Delete button 删 除 - + Do you want to delete all occurrences of this event, or only the selected occurrence? 您要删除此日程的所有重复,还是只删除所选重复? - + Delete All 全部删除 - - + + Delete Only This Event 仅删除此日程 - + Do you want to delete this and all future occurrences of this event, or only the selected occurrence? 您要删除此日程的这个重复和所有将来重复,还是只删除所选重复? - + Delete All Future Events 删除所有将来日程 - - + + You are changing a repeating event. 您正在更改重复日程。 - + Do you want to change only this occurrence of the event, or all occurrences? 您要更改此日程的仅这一个重复,还是更改它的所有重复? - + All 全部日程 - - + + Only This Event 仅此日程 - + Do you want to change only this occurrence of the event, or this and all future occurrences? 您要更改此日程的这个重复和所有将来重复,还是只更改所选重复? - + All Future Events 所有将来日程 - + You have selected a leap month, and will be reminded according to the rules of the lunar calendar. 您选择的是闰月,将按照农历规则提醒 - + OK button 确 定 @@ -635,65 +635,96 @@ CSettingDialog - + Sunday 周日 - + Monday 周一 - + Tuesday + + + + Wednesday + + + + Thursday + + + + Friday + + + + Saturday + + + + + + Use System Setting + 跟随系统 + + + 24-hour clock 24小时制 - + 12-hour clock 12小时制 - + import ICS file 导入ICS文件 - + Manual 手动 - + 15 mins 每15分钟 - + 30 mins 每30分钟 - + 1 hour 每1小时 - + 24 hours 每24小时 - + Sync Now 立即同步 - + Last sync 最近同步时间 + + + Please go to the <a href='/'>Control Center</a> to change system settings + 请到<a href='/'>控制中心</a>更改系统设置 + CTimeEdit @@ -783,12 +814,12 @@ CWeekWindow - + Week - + Y @@ -818,12 +849,12 @@ CalendarWindow - + Calendar 日历 - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. 日历是一款查看日期、管理日程的小工具。 @@ -831,32 +862,32 @@ Calendarmainwindow - + Calendar 日历 - + Manage 管理 - + Privacy Policy 隐私政策 - + Syncing... 正在同步... - + Sync successful 同步成功 - + Sync failed, please try later 同步失败,请稍后再试 @@ -869,11 +900,67 @@ 全天 + + DAccountDataBase + + Work + 工作 + + + Life + 生活 + + + Other + 其他 + + DAlarmManager + + Close + button + 关 闭 + + + One day before start + 提前1天提醒 + + + Remind me tomorrow + 明天提醒 + + + Remind me later + 稍后提醒 + + + 15 mins later + 15分钟后 + + + 1 hour later + 1小时后 + + + 4 hours later + 4小时后 + + + Tomorrow + 明天 + + + Schedule Reminder + 日程提醒 + + + %1 to %2 + %1 至 %2 + Today - + 今天 @@ -902,28 +989,33 @@ JobTypeListView - + export 导出 - + + import ICS file + 导入ICS文件 + + + You are deleting an event type. 您正在删除日程类型。 - + All events under this type will be deleted and cannot be recovered. 此日程类型下的所有日程都会删除且不可恢复。 - + Cancel button 取 消 - + Delete button 删 除 @@ -932,65 +1024,65 @@ QObject - - + + Manage calendar 日历管理 - - + + Event types 日程类型 - + Account settings 帐户设置 - + Account 帐户 - + Select items to be synced 设置您的同步项 - + Events 日程 - - + + General settings 通用设置 - + Sync interval 同步频率 - + Calendar account 日历帐户 - + General 通用 - + First day of week 每星期开始于 - + Time 时间 @@ -1009,7 +1101,7 @@ - + Today Return Today 返回今天 @@ -1161,8 +1253,8 @@ - - + + Today diff --git a/translations/dde-calendar_zh_HK.ts b/translations/dde-calendar_zh_HK.ts index 8ab1ff12..af9b6d2b 100644 --- a/translations/dde-calendar_zh_HK.ts +++ b/translations/dde-calendar_zh_HK.ts @@ -137,12 +137,12 @@ CMonthView - + New event 新建日程 - + New Event 新建日程 @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY 全天 @@ -637,60 +637,95 @@ CSettingDialog - + Sunday 週日 - + Monday 週一 - + + Tuesday + 星期二 + + + + Wednesday + 星期三 + + + + Thursday + 星期四 + + + + Friday + 星期五 + + + + Saturday + 星期六 + + + 24-hour clock 24小時制 - + 12-hour clock 12小時制 - + + import ICS file + + + + Manual 手動 - + 15 mins 每15分鐘 - + 30 mins 每30分鐘 - + 1 hour 每1小時 - + 24 hours 每24小時 - + Sync Now 立即同步 - + Last sync 最近同步時間 + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -807,7 +842,7 @@ CYearWindow - + Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar 日曆 - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. 日曆是一款查看日期、管理日程的小工具。 @@ -871,17 +906,17 @@ Work - + 工作 Life - + 生活 Other - + 其他 @@ -893,61 +928,61 @@ Close button - + 關 閉 One day before start - + 提前1天提醒 Remind me tomorrow - + 明天提醒 Remind me later - + 稍後提醒 15 mins later - + 15分鐘後 1 hour later - + 1小時後 4 hours later - + 4小時後 Tomorrow - + 明天 Schedule Reminder - + 日程提醒 %1 to %2 - + %1 至 %2 Today - 今天 + 今天 @@ -976,23 +1011,33 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. 您正在刪除日程類型。 - + All events under this type will be deleted and cannot be recovered. 此日程類型下的所有日程都會刪除且不可恢復。 - + Cancel button 取 消 - + Delete button 刪 除 @@ -1001,65 +1046,65 @@ QObject - - + + Manage calendar 日曆管理 - - + + Event types 日程類型 - + Account settings 帳戶設置 - + Account 帳戶 - + Select items to be synced 設置您的同步項 - + Events 日程 - - + + General settings 通用設置 - + Sync interval 同步頻率 - + Calendar account 日曆帳戶 - + General 通用 - + First day of week 每星期開始於 - + Time 時間 @@ -1067,7 +1112,7 @@ Return - + Today Return 今天 @@ -1087,33 +1132,44 @@ ScheduleTypeEditDlg - + + New event type 新增日程類型 - + Edit event type 編輯日程類型 - + + Import ICS file + + + + Name: 名稱: - + Color: 顏色: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button 取 消 - + Save button 保 存 @@ -1124,7 +1180,7 @@ 名稱不能設置為全空格,請修改 - + Enter a name please 名稱不能為空 @@ -1207,7 +1263,7 @@ YearFrame - + Y @@ -1221,8 +1277,8 @@ - - + + Today Today 今天 diff --git a/translations/dde-calendar_zh_TW.ts b/translations/dde-calendar_zh_TW.ts index fb18ab1d..2e9faad5 100644 --- a/translations/dde-calendar_zh_TW.ts +++ b/translations/dde-calendar_zh_TW.ts @@ -137,12 +137,12 @@ CMonthView - + New event 建立日程 - + New Event 建立日程 @@ -629,7 +629,7 @@ CScheduleView - + ALL DAY 全天 @@ -637,60 +637,95 @@ CSettingDialog - + Sunday 週日 - + Monday 週一 - + + Tuesday + 星期二 + + + + Wednesday + 星期三 + + + + Thursday + 星期四 + + + + Friday + 星期五 + + + + Saturday + 星期六 + + + 24-hour clock 24小時制 - + 12-hour clock 12小時制 - + + import ICS file + + + + Manual 手動 - + 15 mins 每15分鐘 - + 30 mins 每30分鐘 - + 1 hour 每1小時 - + 24 hours 每24小時 - + Sync Now 立即同步 - + Last sync 最近同步時間 + + + Please go to the <a href='/'>Control Center</a> to change settings + + CTimeEdit @@ -807,7 +842,7 @@ CYearWindow - + Y @@ -815,12 +850,12 @@ CalendarWindow - + Calendar 日曆 - + Calendar is a tool to view dates, and also a smart daily planner to schedule all things in life. 日曆是一款查看日期、管理日程的小工具。 @@ -871,17 +906,17 @@ Work - + 工作 Life - + 生活 Other - + 其他 @@ -893,61 +928,61 @@ Close button - + 關 閉 One day before start - + 提前1天提醒 Remind me tomorrow - + 明天提醒 Remind me later - + 稍後提醒 15 mins later - + 15分鐘後 1 hour later - + 1小時後 4 hours later - + 4小時後 Tomorrow - + 明天 Schedule Reminder - + 日程提醒 %1 to %2 - + %1 至 %2 Today - 今天 + 今天 @@ -976,23 +1011,33 @@ JobTypeListView - + + export + + + + + import ICS file + + + + You are deleting an event type. 您正在刪除日程類型。 - + All events under this type will be deleted and cannot be recovered. 此日程類型下的所有日程都會刪除且不可恢復。 - + Cancel button 取 消 - + Delete button 刪 除 @@ -1001,65 +1046,65 @@ QObject - - + + Manage calendar 日曆管理 - - + + Event types 日程類型 - + Account settings 帳戶設定 - + Account 帳戶 - + Select items to be synced 設定您的同步項 - + Events 日程 - - + + General settings 一般設定 - + Sync interval 同步頻率 - + Calendar account 日曆帳戶 - + General 通用 - + First day of week 每星期開始於 - + Time 時間 @@ -1067,7 +1112,7 @@ Return - + Today Return 今天 @@ -1087,33 +1132,44 @@ ScheduleTypeEditDlg - + + New event type 新增日程類型 - + Edit event type 編輯日程類型 - + + Import ICS file + + + + Name: 名稱: - + Color: 顏色: - + + <a href='https://wikipedia.org/wiki/ICalendar'>ICS</a> File: + + + + Cancel button 取 消 - + Save button 儲 存 @@ -1124,7 +1180,7 @@ 名稱不能設置為全空格,請修改 - + Enter a name please 名稱不能為空 @@ -1207,7 +1263,7 @@ YearFrame - + Y @@ -1221,8 +1277,8 @@ - - + + Today Today 今天