Skip to content

Commit

Permalink
fixed copy errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bwsarge committed Jan 4, 2024
1 parent b2eda6a commit 80b60d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
},
"INTERIM_TEMPLATE_UNSURE": {
"en": "At this time, {{%voted}}% of our CheckMates have assessed and voted on this message. Unfortunately, our CheckMates either have not reached any clear consensus, or are still unsure how to assess the message at this time.\n\nIf you haven't done so, you could send in the message with more context, e.g. sending in a screenshot containing the sender's number.",
"cn": "目前,{%voted}}%的查哥查妹已经对这条短信进行投票评估。但是,他们无法达成一致,或缺乏足够的信息进行评估。\n\n如果您能提供更多信息,例如发信人电话号码或截图,将有助于我们更好地评估。"
"cn": "目前,{{%voted}}%的查哥查妹已经对这条短信进行投票评估。但是,他们无法达成一致,或缺乏足够的信息进行评估。\n\n如果您能提供更多信息,例如发信人电话号码或截图,将有助于我们更好地评估。"
},
"INTERIM_PROMPT": {
"en": "Thanks for waiting! Our network of trusted CheckMate volunteers is still assessing your message.\n\nYou may press the button below to see how our volunteers have rated your message so far. However, *do interpret this preliminary rating with caution* as the final result may differ. \n\nWe appreciate your patience and hope to deliver the final result soon!",
Expand Down Expand Up @@ -368,7 +368,7 @@
"cn": "来自可靠的来源✅"
},
"PLACEHOLDER_IRRELEVANT": {
"en": "message doesn't contain a meaningful claim to assess.😕",
"en": "trivial, meaning the message didn't contain a meaningful claim to assess.😕",
"cn": "没有可以评估的内容😕"
},
"PLACEHOLDER_UNSURE": {
Expand Down
2 changes: 1 addition & 1 deletion functions/src/definitions/common/responseUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ async function sendVotingStats(instancePath: string) {
count: legitimateCount,
isInfo: false,
},
{ name: "unsure", count: unsureCount, isInfo: false },
{ name: responses.PLACEHOLDER_UNSURE, count: unsureCount, isInfo: false },
]

categories.sort((a, b) => b.count - a.count) // sort in descending order
Expand Down

0 comments on commit 80b60d4

Please sign in to comment.