diff --git a/.env.example b/.env.example
index b1315e0..2ca96f3 100755
--- a/.env.example
+++ b/.env.example
@@ -1,4 +1,4 @@
-# /!\ For URLs, don't include the traling '/'
+# /!\ For URLs, don't include the trailing '/'
# ┌─────────────────────┐
# │ PRIVATE VARIABLES │
@@ -26,9 +26,9 @@ SMTP_PASSWORD=mypassword123
NEXT_PUBLIC_URL_CMS=https://url-to.strapi-accords-library.com
NEXT_PUBLIC_URL_IMG=https://url-to.img-accords-library.com
-NEXT_PUBLIC_URL_WATCH=https://url-to.watch-accords-library.com
NEXT_PUBLIC_URL_SELF=https://url-to-front-accords-library.com
-NEXT_PUBLIC_URL_SCANS_DOWNLOAD=https://url-to.search-accords-library.com
+NEXT_PUBLIC_URL_SCANS=https://url-to.scans-accords-library.com/
+NEXT_PUBLIC_URL_VIDEOS=https://url-to.videos-accords-library.com/
## MEILISEARCH
diff --git a/public/local-data/websiteInterfaces.json b/public/local-data/websiteInterfaces.json
index 3b6890a..bfc7ea6 100644
--- a/public/local-data/websiteInterfaces.json
+++ b/public/local-data/websiteInterfaces.json
@@ -186,7 +186,8 @@
"level_x": "Level {x}",
"story_x": "Story {x}",
"player_name_tooltip": "Certain in-game texts use the player's name as part of the dialogue/narration. If you want to see your name in the transcript found on this website, feel free to enter your player's name here. If left empty, '(player)' will be used instead.",
- "download_scans": "Download scans"
+ "download_scans": "Download scans",
+ "search_placeholder": "Search..."
}
},
{
@@ -374,7 +375,8 @@
"level_x": "Niveau {x}",
"story_x": "Histoire {x}",
"player_name_tooltip": "Certains textes dans les jeux utilisent le nom du joueur dans les dialogue/la narration. Si vous voulez voir votre nom dans les transcriptions se trouvant sur ce site web, n'hésitez pas à entrer votre nom de joueur ici. S'il n'est pas renseigné, '(player)' sera utilisé à la place.",
- "download_scans": "Télécharger les scans"
+ "download_scans": "Télécharger les scans",
+ "search_placeholder": "Rechercher ..."
}
},
{
@@ -562,7 +564,8 @@
"level_x": null,
"story_x": null,
"player_name_tooltip": null,
- "download_scans": null
+ "download_scans": null,
+ "search_placeholder": null
}
},
{
@@ -750,7 +753,8 @@
"level_x": null,
"story_x": null,
"player_name_tooltip": null,
- "download_scans": null
+ "download_scans": null,
+ "search_placeholder": null
}
},
{
@@ -938,7 +942,8 @@
"level_x": null,
"story_x": null,
"player_name_tooltip": null,
- "download_scans": null
+ "download_scans": null,
+ "search_placeholder": null
}
}
]
diff --git a/src/components/Panels/SearchPopup.tsx b/src/components/Panels/SearchPopup.tsx
index 8f5bbcf..a991da5 100644
--- a/src/components/Panels/SearchPopup.tsx
+++ b/src/components/Panels/SearchPopup.tsx
@@ -212,7 +212,7 @@ export const SearchPopup = (): JSX.Element => {
ref={searchInputRef}
onChange={fetchSearchResults}
value={query}
- placeholder={format("search_title")}
+ placeholder={format("search_placeholder")}
/>