mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: update i18n
This commit is contained in:
parent
ee73c04b12
commit
d10fed6aeb
6 changed files with 9 additions and 40 deletions
|
@ -361,7 +361,7 @@
|
||||||
"tour": {
|
"tour": {
|
||||||
"subscription_tour_title": "Hydra Cloud Subscription",
|
"subscription_tour_title": "Hydra Cloud Subscription",
|
||||||
"subscribe_now": "Subscribe now",
|
"subscribe_now": "Subscribe now",
|
||||||
"cloud_saving": "Cloud saving (up to {{gameCount}} games)",
|
"cloud_saving": "Cloud saving",
|
||||||
"cloud_achievements": "Save your achievements on the cloud",
|
"cloud_achievements": "Save your achievements on the cloud",
|
||||||
"animated_profile_picture": "Animated profile pictures",
|
"animated_profile_picture": "Animated profile pictures",
|
||||||
"premium_support": "Premium Support",
|
"premium_support": "Premium Support",
|
||||||
|
|
|
@ -361,7 +361,7 @@
|
||||||
"tour": {
|
"tour": {
|
||||||
"subscription_tour_title": "Suscripción Hydra Cloud",
|
"subscription_tour_title": "Suscripción Hydra Cloud",
|
||||||
"subscribe_now": "Suscribirse ahora",
|
"subscribe_now": "Suscribirse ahora",
|
||||||
"cloud_saving": "Guardado en la nube (hasta {{gameCount}} juegos)",
|
"cloud_saving": "Guardado en la nube",
|
||||||
"cloud_achievements": "Guarda tus logros en la nube",
|
"cloud_achievements": "Guarda tus logros en la nube",
|
||||||
"animated_profile_picture": "Fotos de perfil animadas",
|
"animated_profile_picture": "Fotos de perfil animadas",
|
||||||
"premium_support": "Soporte Premium",
|
"premium_support": "Soporte Premium",
|
||||||
|
|
|
@ -449,7 +449,7 @@
|
||||||
"tour": {
|
"tour": {
|
||||||
"subscription_tour_title": "Hydra Cloud Tellimus",
|
"subscription_tour_title": "Hydra Cloud Tellimus",
|
||||||
"subscribe_now": "Telli kohe",
|
"subscribe_now": "Telli kohe",
|
||||||
"cloud_saving": "Pilvesalvestus (kuni {{gameCount}} mängu)",
|
"cloud_saving": "Pilvesalvestus",
|
||||||
"cloud_achievements": "Salvesta oma saavutused pilve",
|
"cloud_achievements": "Salvesta oma saavutused pilve",
|
||||||
"animated_profile_picture": "Animeeritud profiilipildid",
|
"animated_profile_picture": "Animeeritud profiilipildid",
|
||||||
"premium_support": "Premium tugi",
|
"premium_support": "Premium tugi",
|
||||||
|
|
|
@ -368,6 +368,6 @@
|
||||||
"premium_support": "Suporte Premium",
|
"premium_support": "Suporte Premium",
|
||||||
"show_and_compare_achievements": "Exiba e compare suas conquistas com outros usuários",
|
"show_and_compare_achievements": "Exiba e compare suas conquistas com outros usuários",
|
||||||
"animated_profile_banner": "Banner animado no perfil",
|
"animated_profile_banner": "Banner animado no perfil",
|
||||||
"cloud_saving": "Saves na Cloud (até {{gameCount}} jogos)"
|
"cloud_saving": "Saves de jogos em nuvem"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -307,12 +307,10 @@ export function App() {
|
||||||
onClose={handleToastClose}
|
onClose={handleToastClose}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
{showSubscritionTourModal && (
|
<SubscriptionTourModal
|
||||||
<SubscriptionTourModal
|
visible={showSubscritionTourModal}
|
||||||
visible={showSubscritionTourModal}
|
onClose={handleCloseSubscriptionTourModal}
|
||||||
onClose={handleCloseSubscriptionTourModal}
|
/>
|
||||||
/>
|
|
||||||
)}
|
|
||||||
|
|
||||||
{userDetails && (
|
{userDetails && (
|
||||||
<UserFriendModal
|
<UserFriendModal
|
||||||
|
|
|
@ -21,7 +21,6 @@ export const SubscriptionTourModal = ({
|
||||||
<Modal
|
<Modal
|
||||||
visible={visible}
|
visible={visible}
|
||||||
title={t("subscription_tour_title")}
|
title={t("subscription_tour_title")}
|
||||||
large={true}
|
|
||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
|
@ -34,7 +33,6 @@ export const SubscriptionTourModal = ({
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
display: "flex",
|
display: "flex",
|
||||||
width: "100%",
|
|
||||||
flexDirection: "row",
|
flexDirection: "row",
|
||||||
gap: `${SPACING_UNIT * 2}px`,
|
gap: `${SPACING_UNIT * 2}px`,
|
||||||
justifyContent: "space-around",
|
justifyContent: "space-around",
|
||||||
|
@ -50,34 +48,7 @@ export const SubscriptionTourModal = ({
|
||||||
<h2>Hydra Cloud</h2>
|
<h2>Hydra Cloud</h2>
|
||||||
<ul style={{ margin: "0", padding: "0" }}>
|
<ul style={{ margin: "0", padding: "0" }}>
|
||||||
<li style={{ margin: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px` }}>
|
<li style={{ margin: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px` }}>
|
||||||
{t("cloud_saving", { gameCount: 15 })}
|
{t("cloud_saving")}
|
||||||
</li>
|
|
||||||
<li style={{ margin: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px` }}>
|
|
||||||
{t("cloud_achievements")}
|
|
||||||
</li>
|
|
||||||
<li style={{ margin: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px` }}>
|
|
||||||
{t("show_and_compare_achievements")}
|
|
||||||
</li>
|
|
||||||
<li style={{ margin: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px` }}>
|
|
||||||
{t("animated_profile_picture")}
|
|
||||||
</li>
|
|
||||||
<li style={{ margin: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px` }}>
|
|
||||||
{t("premium_support")}
|
|
||||||
</li>
|
|
||||||
</ul>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div
|
|
||||||
style={{
|
|
||||||
display: "flex",
|
|
||||||
flexDirection: "column",
|
|
||||||
gap: `${SPACING_UNIT * 2}px`,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
<h2>Hydra Cloud+</h2>
|
|
||||||
<ul style={{ margin: "0", padding: "0" }}>
|
|
||||||
<li style={{ margin: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px` }}>
|
|
||||||
{t("cloud_saving", { gameCount: 30 })}
|
|
||||||
</li>
|
</li>
|
||||||
<li style={{ margin: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px` }}>
|
<li style={{ margin: `${SPACING_UNIT}px ${SPACING_UNIT * 2}px` }}>
|
||||||
{t("cloud_achievements")}
|
{t("cloud_achievements")}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue