Drop the panel's caveat line and chart hint

This commit is contained in:
2026-08-15 10:48:55 +03:00
parent ba95eba591
commit a07558c371
2 changed files with 0 additions and 9 deletions
-6
View File
@@ -35,7 +35,6 @@ var OBI18n = (function () {
chartMedianLegend: "Kırmızı çizgi: medyan", chartMedianLegend: "Kırmızı çizgi: medyan",
chartSelfLegend: "Turuncu: bu video", chartSelfLegend: "Turuncu: bu video",
chartNotInPool: "Bu video kanalın son $1 videosunun içinde değil", 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", tipViews: "$1 izlenme",
agoDays: "$1 gün önce", agoDays: "$1 gün önce",
agoMonths: "$1 ay önce", agoMonths: "$1 ay önce",
@@ -43,8 +42,6 @@ var OBI18n = (function () {
tipThisVideo: "bu video", tipThisVideo: "bu video",
panelNoScore: "Skor hesaplanamadı: kanalın bu havuzunda en az $1 video gerekiyor.", panelNoScore: "Skor hesaplanamadı: kanalın bu havuzunda en az $1 video gerekiyor.",
panelError: "Skor alınamadı: $1", 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.", popupPermission: "Eklentinin YouTube'a istek atma izni yok, rozet çıkmaz.",
popupGrant: "İzin ver", popupGrant: "İzin ver",
@@ -101,7 +98,6 @@ var OBI18n = (function () {
chartMedianLegend: "Red line: median", chartMedianLegend: "Red line: median",
chartSelfLegend: "Orange: this video", chartSelfLegend: "Orange: this video",
chartNotInPool: "This video is not among the channel's last $1", 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", tipViews: "$1 views",
agoDays: "$1 days ago", agoDays: "$1 days ago",
agoMonths: "$1 months ago", agoMonths: "$1 months ago",
@@ -109,8 +105,6 @@ var OBI18n = (function () {
tipThisVideo: "this video", tipThisVideo: "this video",
panelNoScore: "No score: this channel pool needs at least $1 videos.", panelNoScore: "No score: this channel pool needs at least $1 videos.",
panelError: "Score unavailable: $1", 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.", popupPermission: "The extension is not allowed to call YouTube, so no badges appear.",
popupGrant: "Grant access", popupGrant: "Grant access",
-3
View File
@@ -86,7 +86,6 @@ var OBPanel = (function () {
} else { } else {
legend.appendChild(el("span", null, T.t("chartNotInPool", items.length))); legend.appendChild(el("span", null, T.t("chartNotInPool", items.length)));
} }
legend.appendChild(el("span", null, T.t("chartHint")));
wrap.appendChild(legend); wrap.appendChild(legend);
return wrap; return wrap;
} }
@@ -170,8 +169,6 @@ var OBPanel = (function () {
panel.appendChild(el("div", "ob-section-title", T.t("panelDistTitle"))); panel.appendChild(el("div", "ob-section-title", T.t("panelDistTitle")));
panel.appendChild(distribution(pool, data.videoId, data.median)); 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 }; return { render: render, renderLoading: renderLoading, renderError: renderError, remove: remove };