diff --git a/l10n/pot/civicrm.pot b/l10n/pot/civicrm.pot index 919f4479a..0f45ba5e5 100644 --- a/l10n/pot/civicrm.pot +++ b/l10n/pot/civicrm.pot @@ -49537,4 +49537,10 @@ msgid "Recur %1-%2" msgstr "" msgid "Contribution %1" +msgstr "" + +msgid "The will be synchronized at a fixed time every day." +msgstr "" + +msgid "If there is an immediate need, you can click \"Manual Sync\"." msgstr "" \ No newline at end of file diff --git a/l10n/zh_TW/LC_MESSAGES/civicrm.mo b/l10n/zh_TW/LC_MESSAGES/civicrm.mo index 45957b4d6..d25099771 100644 Binary files a/l10n/zh_TW/LC_MESSAGES/civicrm.mo and b/l10n/zh_TW/LC_MESSAGES/civicrm.mo differ diff --git a/l10n/zh_TW/civicrm.po b/l10n/zh_TW/civicrm.po index 69c5bfb54..95a36c4ef 100644 --- a/l10n/zh_TW/civicrm.po +++ b/l10n/zh_TW/civicrm.po @@ -2,7 +2,7 @@ # Translators: # CC Chu , 2020-2024 # Chang Shu-huai , 2016-2024 -# Charles Chuang, 2022-2023 +# Charles Chuang, 2022-2024 # CHUNLIAN WU , 2017 # Fuyuan Cheng , 2013-2015 # Harry Lin , 2023 @@ -31682,7 +31682,7 @@ msgstr "按「繼續」鍵以進行結帳流程,完成付款 msgid "" "Otherwise, click the Continue button below to complete your" " registration." -msgstr "請按下方「繼續」以完成報名。" +msgstr "請按下方的「下一步」按鈕以完成報名。" #: templates/CRM/Event/Form/Registration/Confirm.tpl #: templates/CRM/Event/Form/Registration/ThankYou.tpl @@ -50052,7 +50052,7 @@ msgstr "自動化行銷旅程非立即進行,需依自動化行銷工具排程 msgid "" "After binding a group, the system will lock this group, preventing any " "edits." -msgstr "綁定群組後,系統會鎖定此群組無法編輯" +msgstr "綁定群組後,系統會鎖定此群組無法編輯。" #: templates/CRM/Group/Page/Group.tpl msgid "" @@ -50096,3 +50096,9 @@ msgstr "定期編號%1-%2" msgid "Contribution %1" msgstr "捐款編號%1" + +msgid "The will be synchronized at a fixed time every day." +msgstr "將於每日固定時間會同步名單。" + +msgid "If there is an immediate need, you can click \"Manual Sync\"." +msgstr "若有需要,你可點擊「手動同步」" diff --git a/templates/CRM/Contact/Form/Task/AnnualReceiptEmail/MailingOption.tpl b/templates/CRM/Contact/Form/Task/AnnualReceiptEmail/MailingOption.tpl index dab493607..737a80deb 100644 --- a/templates/CRM/Contact/Form/Task/AnnualReceiptEmail/MailingOption.tpl +++ b/templates/CRM/Contact/Form/Task/AnnualReceiptEmail/MailingOption.tpl @@ -73,12 +73,18 @@ } } }); + var clickSubmitButton; + $('#MailingOption').on('click', '.form-submit', function(e) { + clickSubmitButton = $(e.target); + }); + $("#MailingOption").submit(function(e){ + var button; if ($(this).data('action')) { - var button = $(this).data('action'); + button = $(this).data('action'); } else { - var button = $(document.activeElement).attr('name'); + button = clickSubmitButton.attr('name'); } if (button == '_qf_MailingOption_next' && !confirmEmail) { $('#dialog-confirm-email').dialog('open');