Skip to content

Commit

Permalink
Release merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
jimyhuang committed Jun 12, 2024
2 parents dc717a9 + cc7c87a commit 5c9c921
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
6 changes: 6 additions & 0 deletions l10n/pot/civicrm.pot
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
Binary file modified l10n/zh_TW/LC_MESSAGES/civicrm.mo
Binary file not shown.
12 changes: 9 additions & 3 deletions l10n/zh_TW/civicrm.po
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Translators:
# CC Chu <[email protected]>, 2020-2024
# Chang Shu-huai <[email protected]>, 2016-2024
# Charles Chuang, 2022-2023
# Charles Chuang, 2022-2024
# CHUNLIAN WU <[email protected]>, 2017
# Fuyuan Cheng <[email protected]>, 2013-2015
# Harry Lin <[email protected]>, 2023
Expand Down Expand Up @@ -31682,7 +31682,7 @@ msgstr "按「<strong>繼續</strong>」鍵以進行結帳流程,完成付款
msgid ""
"Otherwise, click the <strong>Continue</strong> button below to complete your"
" registration."
msgstr "請按下方「<strong>繼續</strong>」以完成報名。"
msgstr "請按下方的「<strong>下一步</strong>」按鈕以完成報名。"

#: templates/CRM/Event/Form/Registration/Confirm.tpl
#: templates/CRM/Event/Form/Registration/ThankYou.tpl
Expand Down Expand Up @@ -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 ""
Expand Down Expand Up @@ -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 "若有需要,你可點擊「手動同步」"
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 5c9c921

Please sign in to comment.