diff --git a/output/about/index.md b/output/about/index.md index 2d260d960..5518693c7 100644 --- a/output/about/index.md +++ b/output/about/index.md @@ -54,3 +54,9 @@ After fetching new proposed community notes, the text of the tweets that the not dt.textContent = luxon.DateTime.fromISO(dt.textContent).toRelative(); } + +### Why is the language unknown for some tweets? + +Until we’ve fetched a tweet, we don’t know its language. So ‘unknown language’ may mean we haven’t yet fetched that tweet. Once we’ve fetched it (in the next hour or so) we should know the tweet author, language and text. + +‘Unknown language’ may also mean the tweet has been deleted. In this case, we have no way of determining the tweet author, language or text. diff --git a/output/index.md b/output/index.md index 2e0b69b3e..44c58ede1 100644 --- a/output/index.md +++ b/output/index.md @@ -157,7 +157,7 @@ Proposed [Twitter community notes](https://twitter.com/i/communitynotes/download return '~ (put this last)'; } if (type === 'display') { - return 'Unknown language (deleted)'; + return 'Unknown language (see about page)'; } return data; }