Changed "download scans" to "download archive"
This commit is contained in:
parent
895fee1bae
commit
a047d18c76
|
@ -169,7 +169,7 @@
|
|||
"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_archive": "Download archive",
|
||||
"search_placeholder": "Search...",
|
||||
"performance_mode": "Performance mode",
|
||||
"performance_mode_tooltip": "This option improves performances by reducing certain visual effects (blurry backgrounds, shadows...). This mode is enabled by default on Linux, iOS, and Safari. This mode cannot be disabled on iOS or Safari as the experience would be too poor.",
|
||||
|
@ -349,7 +349,7 @@
|
|||
"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_archive": "Télécharger l'archive",
|
||||
"search_placeholder": "Rechercher ...",
|
||||
"performance_mode": "Mode performance",
|
||||
"performance_mode_tooltip": "Cette option permet d'améliorer les performances en réduisant certains effets visuels (flous, ombres...). Ce mode est activé par défaut sur Linux, iOS et Safari. Ce mode ne peut pas être désactivé sur iOS ou Safari car l'expérience serait trop mauvaise.",
|
||||
|
@ -529,7 +529,7 @@
|
|||
"level_x": null,
|
||||
"story_x": null,
|
||||
"player_name_tooltip": null,
|
||||
"download_scans": null,
|
||||
"download_archive": null,
|
||||
"search_placeholder": null,
|
||||
"performance_mode": null,
|
||||
"performance_mode_tooltip": null,
|
||||
|
@ -709,7 +709,7 @@
|
|||
"level_x": null,
|
||||
"story_x": null,
|
||||
"player_name_tooltip": null,
|
||||
"download_scans": null,
|
||||
"download_archive": null,
|
||||
"search_placeholder": null,
|
||||
"performance_mode": null,
|
||||
"performance_mode_tooltip": null,
|
||||
|
@ -889,7 +889,7 @@
|
|||
"level_x": null,
|
||||
"story_x": null,
|
||||
"player_name_tooltip": null,
|
||||
"download_scans": null,
|
||||
"download_archive": null,
|
||||
"search_placeholder": null,
|
||||
"performance_mode": null,
|
||||
"performance_mode_tooltip": null,
|
||||
|
|
|
@ -167,7 +167,7 @@ export interface ICUParams {
|
|||
level_x: { x: Date | boolean | number | string };
|
||||
story_x: { x: Date | boolean | number | string };
|
||||
player_name_tooltip: never;
|
||||
download_scans: never;
|
||||
download_archive: never;
|
||||
search_placeholder: never;
|
||||
performance_mode: never;
|
||||
performance_mode_tooltip: never;
|
||||
|
|
|
@ -174,7 +174,7 @@ query localDataGetWebsiteInterfaces {
|
|||
level_x
|
||||
story_x
|
||||
player_name_tooltip
|
||||
download_scans
|
||||
download_archive
|
||||
search_placeholder
|
||||
performance_mode
|
||||
performance_mode_tooltip
|
||||
|
|
|
@ -413,8 +413,7 @@ const LibrarySlug = ({
|
|||
</div>
|
||||
)}
|
||||
|
||||
{item.metadata?.[0]?.__typename !== "ComponentMetadataGroup" &&
|
||||
item.metadata?.[0]?.__typename !== "ComponentMetadataOther" && (
|
||||
{item.metadata?.[0]?.__typename === "ComponentMetadataBooks" && (
|
||||
<div
|
||||
className={cJoin(
|
||||
"grid gap-4",
|
||||
|
@ -422,8 +421,6 @@ const LibrarySlug = ({
|
|||
)}>
|
||||
<h3 className="text-xl">{format("type_information")}</h3>
|
||||
<div className="flex flex-wrap place-content-between gap-x-8">
|
||||
{item.metadata?.[0]?.__typename === "ComponentMetadataBooks" && (
|
||||
<>
|
||||
{isDefined(item.metadata[0].page_count) && (
|
||||
<div className="flex flex-row place-content-start gap-4">
|
||||
<p className="font-bold">{format("page", { count: Infinity })}:</p>
|
||||
|
@ -467,8 +464,6 @@ const LibrarySlug = ({
|
|||
))}
|
||||
</div>
|
||||
)}
|
||||
</>
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
|
@ -542,7 +537,7 @@ const LibrarySlug = ({
|
|||
<Button
|
||||
href={getScanArchiveURL(item.slug)}
|
||||
icon="download"
|
||||
text={format("download_scans")}
|
||||
text={format("download_archive")}
|
||||
/>
|
||||
)}
|
||||
</div>
|
||||
|
|
|
@ -374,7 +374,7 @@ const LibrarySlug = ({
|
|||
<Button
|
||||
href={getScanArchiveURL(item.slug)}
|
||||
icon="download"
|
||||
text={format("download_scans")}
|
||||
text={format("download_archive")}
|
||||
/>
|
||||
)}
|
||||
</SubPanel>
|
||||
|
|
Loading…
Reference in New Issue