Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions assets/js/i18n/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@
"Typed/Bookmarked": "Typed / Bookmarked",
"OtherWebSites": "Other Web Sites",
"SocialNetworks": "Social Networks",
"ConversationalAITools": "Conversational AI Tools",
"Conversational AI Tools": "Conversational AI Tools",
"Numberofvisits": "Visits (thousands)",
"LanguageToggleEN": "View data for the equivalent French page",
"LanguageToggleFR": "View data for the equivalent English page",
Expand Down
2 changes: 2 additions & 0 deletions assets/js/i18n/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@
"Typed/Bookmarked": "Traffic direct / Favoris",
"OtherWebSites": "Autres sites Web",
"SocialNetworks": "Médias sociaux",
"ConversationalAITools": "Outils d'IA conversationnelle",
"Conversational AI Tools": "Outils d'IA conversationnelle",
"Numberofvisits": "Visites (milliers)",
"LanguageToggleEN": "Afficher les données de la page équivalente en français",
"LanguageToggleFR": "Afficher les données de la page équivalente en anglais",
Expand Down
3 changes: 3 additions & 0 deletions js/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -1662,6 +1662,7 @@ const jsonMetrics = (json, day) => {
var otherWebsitesNum = 102 + parseInt(day);
var socialNetworksNum = 105 + parseInt(day);
var typedBookmarkedNum = 108 + parseInt(day);
var conversationalAiToolsNum = 153 + parseInt(day);

$uv.html("");
$visit.html("");
Expand Down Expand Up @@ -1811,12 +1812,14 @@ const jsonMetrics = (json, day) => {
otherWebsites = parseInt(rows[otherWebsitesNum]);
socialNetworks = parseInt(rows[socialNetworksNum]);
typedBookmarked = parseInt(rows[typedBookmarkedNum]);
conversationalAiTools = parseInt(rows[conversationalAiToolsNum]);

let referrerType = [
["Search Engines", searchEngine],
["Other Web Sites", otherWebsites],
["Social Networks", socialNetworks],
["Typed / Bookmarked", typedBookmarked],
["Conversational AI Tools", conversationalAiTools],
];

jsonRT(referrerType, day);
Expand Down
2 changes: 1 addition & 1 deletion php/data.php

Large diffs are not rendered by default.

Loading