diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index d4959e84..dcdb1da9 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -574,5 +574,6 @@
"show_quote_count": { "message": "Show quote count on tweets" },
"uploading": { "message": "Uploading" },
"finalization": { "message": "Finalization" },
- "processing": { "message": "Processing" }
+ "processing": { "message": "Processing" },
+ "quotes": { "message": "Quotes" }
}
\ No newline at end of file
diff --git a/_locales/ko/messages.json b/_locales/ko/messages.json
index 755cfd2d..0283b74a 100644
--- a/_locales/ko/messages.json
+++ b/_locales/ko/messages.json
@@ -517,7 +517,7 @@
"mute_videos": { "message": "비디오를 기본적으로 음소거합니다" },
"dont_pause_videos": { "message": "스크롤 할 때 비디오를 일시정지 하지 않습니다" },
"delete_for_you":{ "message": "나에게서 삭제", "description":"DM Message Delete menu"},
- "show_user_previews_on_mobile": { "message": "계속 누를 시 유저 프로필을 보여줍니다 (이용에 방해될 수 있습니다)" },
+ "show_user_previews_on_mobile": { "message": "계속 누를 시 유저 프로필을 표시합니다 (이용에 방해될 수 있습니다)" },
"separate_text": { "message": "텍스트를 분리하기", "description": "This option appears in three-dot menu of tweets only on mobile and makes text bigger and adds padding on top and bottom on tap" },
"leave_conversation": {"message":"대화를 삭제하시거나 나가실건가요?"},
"autotranslation_help1": {"message": "이 기능은 버튼을 직접 누를 필요 없이 자동으로 트윗을 찾아 번역을 하는 기능입니다."},
@@ -549,7 +549,7 @@
"manage_searches": { "message": "검색 관리하기" },
"add_search": { "message": "검색 추가하기" },
"pinned_searches": { "message": "고정된 검색" },
- "show_follower_counts_in_lists": { "message": "팔로우/팔로잉 페이지에서 팔로워의 수를 보여줍니다" },
+ "show_follower_counts_in_lists": { "message": "팔로우/팔로잉 페이지에서 팔로워의 수를 표시합니다" },
"not_possible_to_see_unfollowers": { "message": "아쉽게도, 50,000 명 이상의 팔로워를 가진 계정에 대해 언팔로우를 볼 수 없습니다." },
"sort_by_follow_date": { "message": "팔로우 한 날짜 순 정렬 (부정확)" },
"sort_by_followers": { "message": "팔로워 수 순 정렬" },
@@ -566,13 +566,14 @@
"descending": { "message": "내림차순" },
"search_by_name": { "message": "이름으로 검색" },
"search_by_description": { "message": "자기소개로 검색" },
- "only_show_people_you_follow": { "message": "나를 팔로우 하는 사람만 보여줍니다" },
- "only_show_people_with_followers": { "message": "최소 $NUMBER$ 팔로워를 가진 사람만 보여줍니다", "placeholders": { "number": { "content": "-1" } } },
- "only_show_people_with_age": { "message": "$NUMBER$ 일 된 계정을 가진 사람만 보여줍니다", "placeholders": { "number": { "content": "-1" } } },
+ "only_show_people_you_follow": { "message": "나를 팔로우 하는 사람만 표시합니다" },
+ "only_show_people_with_followers": { "message": "최소 $NUMBER$ 팔로워를 가진 사람만 표시합니다", "placeholders": { "number": { "content": "-1" } } },
+ "only_show_people_with_age": { "message": "$NUMBER$ 일 된 계정을 가진 사람만 표시합니다", "placeholders": { "number": { "content": "-1" } } },
"page": { "message": "페이지" },
"update": {"message": "업데이트" },
- "show_quote_count": { "message": "트윗의 인용 수를 보여줍니다" },
+ "show_quote_count": { "message": "트윗의 인용 수를 표시합니다" },
"uploading": { "message": "업로드 중" },
"finalization": { "message": "마무리 하는 중" },
- "processing": { "message": "처리 중" }
+ "processing": { "message": "처리 중" },
+ "quotes": { "message": "인용" }
}
\ No newline at end of file
diff --git a/layouts/header/style.css b/layouts/header/style.css
index 5bf28e72..977c79e5 100644
--- a/layouts/header/style.css
+++ b/layouts/header/style.css
@@ -1972,9 +1972,6 @@ emoji-picker {
.tweet-interact-bookmark:before {
content: "\f093";
}
-.tweet-interact-quote:before {
- content: "\f029";
-}
.user-verified::after {
content: "\f099";
color: #ee55a1;
@@ -2170,10 +2167,6 @@ emoji-picker {
.tweet-interact-bookmark:hover {
color: #3b918a !important
}
-.tweet-interact-quote:hover:before,
-.tweet-interact-quote:hover {
- color: #913b8d !important
-}
.tweet-birdwatch {
margin-top: 10px;
@@ -2351,6 +2344,10 @@ rt.furigana {
color: #00aced;
content: "\f012"
}
+.ni-milestone:before {
+ color: #00aced;
+ content: "\f007"
+}
.wtf-user-name {
max-width: 180px;
}
diff --git a/layouts/lists/style.css b/layouts/lists/style.css
index d4d2f8ef..0e947b9d 100644
--- a/layouts/lists/style.css
+++ b/layouts/lists/style.css
@@ -652,6 +652,10 @@ a:hover,
color: #5c913b;
content: "\f006"
}
+.ni-milestone:before {
+ color: #00aced;
+ content: "\f007"
+}
.center-text {
background-color: var(--background-color);
diff --git a/layouts/search/style.css b/layouts/search/style.css
index f8d52245..0fec4a04 100644
--- a/layouts/search/style.css
+++ b/layouts/search/style.css
@@ -644,6 +644,10 @@ a:hover,
color: #5c913b;
content: "\f006"
}
+.ni-milestone:before {
+ color: #00aced;
+ content: "\f007"
+}
.center-text {
background-color: var(--background-color);
diff --git a/scripts/helpers.js b/scripts/helpers.js
index cd4d0ef1..1fc36f0b 100644
--- a/scripts/helpers.js
+++ b/scripts/helpers.js
@@ -1894,6 +1894,12 @@ async function appendTweet(t, timelineContainer, options = {}) {
+ ${vars.showQuoteCount && typeof t.quote_count !== 'undefined' && t.quote_count > 0 ?
+ /*html*/`` :
+ ''}
]*>([\s\S]*?)<\/a>/g;
let replacerLocs;
diff --git a/scripts/tweetviewer.js b/scripts/tweetviewer.js
index 8231cf72..05d53938 100644
--- a/scripts/tweetviewer.js
+++ b/scripts/tweetviewer.js
@@ -1028,6 +1028,12 @@ class TweetViewer {
+ ${vars.showQuoteCount && typeof t.quote_count !== 'undefined' && t.quote_count > 0 ? /*html*/
+ `` :
+ ''}