From a07558c3715836b2b9423a34a35c938d44335378 Mon Sep 17 00:00:00 2001 From: yusufipk Date: Sat, 15 Aug 2026 10:48:55 +0300 Subject: [PATCH] Drop the panel's caveat line and chart hint --- src/i18n.js | 6 ------ src/panel.js | 3 --- 2 files changed, 9 deletions(-) diff --git a/src/i18n.js b/src/i18n.js index 6b7cb85..a4f4870 100644 --- a/src/i18n.js +++ b/src/i18n.js @@ -35,7 +35,6 @@ var OBI18n = (function () { chartMedianLegend: "Kırmızı çizgi: medyan", chartSelfLegend: "Turuncu: bu video", chartNotInPool: "Bu video kanalın son $1 videosunun içinde değil", - chartHint: "Her çubuk bir video, yüksekliği izlenmesi. Üzerine gel, tıkla açılsın.", tipViews: "$1 izlenme", agoDays: "$1 gün önce", agoMonths: "$1 ay önce", @@ -43,8 +42,6 @@ var OBI18n = (function () { tipThisVideo: "bu video", panelNoScore: "Skor hesaplanamadı: kanalın bu havuzunda en az $1 video gerekiyor.", panelError: "Skor alınamadı: $1", - panelNote: "Kanal izlenmeleri YouTube tarafından yuvarlanmış gelir, skor yaklaşıktır. " + - "7 günden yeni videoların skoru olduğundan düşük çıkar.", popupPermission: "Eklentinin YouTube'a istek atma izni yok, rozet çıkmaz.", popupGrant: "İzin ver", @@ -101,7 +98,6 @@ var OBI18n = (function () { chartMedianLegend: "Red line: median", chartSelfLegend: "Orange: this video", chartNotInPool: "This video is not among the channel's last $1", - chartHint: "Each bar is a video, its height the view count. Hover for details, click to open.", tipViews: "$1 views", agoDays: "$1 days ago", agoMonths: "$1 months ago", @@ -109,8 +105,6 @@ var OBI18n = (function () { tipThisVideo: "this video", panelNoScore: "No score: this channel pool needs at least $1 videos.", panelError: "Score unavailable: $1", - panelNote: "Channel view counts come rounded from YouTube, so the score is approximate. " + - "Videos under 7 days old score lower than they deserve.", popupPermission: "The extension is not allowed to call YouTube, so no badges appear.", popupGrant: "Grant access", diff --git a/src/panel.js b/src/panel.js index 9bc6eb1..4a68b3f 100644 --- a/src/panel.js +++ b/src/panel.js @@ -86,7 +86,6 @@ var OBPanel = (function () { } else { legend.appendChild(el("span", null, T.t("chartNotInPool", items.length))); } - legend.appendChild(el("span", null, T.t("chartHint"))); wrap.appendChild(legend); return wrap; } @@ -170,8 +169,6 @@ var OBPanel = (function () { panel.appendChild(el("div", "ob-section-title", T.t("panelDistTitle"))); panel.appendChild(distribution(pool, data.videoId, data.median)); } - - panel.appendChild(el("div", "ob-note", T.t("panelNote"))); } return { render: render, renderLoading: renderLoading, renderError: renderError, remove: remove };