diff --git a/src/App.jsx b/src/App.jsx index 9ec9212..3df0d93 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -902,7 +902,7 @@ export default function App() { {[ { id: 'dashboard', label: t('dashboard'), icon: LayoutDashboard }, { id: 'closet', label: t('closet'), icon: Shirt }, - { id: 'wishlist', label: t('wishlist') || 'Lista de Desejos', icon: ShoppingBag }, + { id: 'wishlist', label: t('wishlist') || 'Carrinho', icon: ShoppingBag }, { id: 'laundry', label: t('laundry'), icon: Droplets }, { id: 'outfits', label: t('outfits'), icon: Sparkles }, { id: 'settings', label: t('settings'), icon: Settings }, @@ -955,7 +955,7 @@ export default function App() {

{view === 'dashboard' && t('overview')} {view === 'closet' && t('myCloset')} - {view === 'wishlist' && (t('wishlist') || 'Lista de Desejos')} + {view === 'wishlist' && (t('wishlist') || 'Carrinho')} {view === 'laundry' && t('laundry')} {view === 'outfits' && t('outfitsAndStyle')} {view === 'settings' && t('settings')} @@ -1081,7 +1081,7 @@ export default function App() { {/* Barra de Secções */} - {(view === 'closet' || view === 'outfits') && ( + {(view === 'closet' || view === 'wishlist' || view === 'outfits') && (
))} - +
)} @@ -1897,13 +1902,6 @@ export default function App() { {/* Criar nova secção */}
- setNewSectionEmoji(e.target.value)} - placeholder={t('emojiPlaceholder')} - maxLength={2} - className={`w-16 p-3 rounded-xl border-none outline-none font-bold text-center text-lg ${darkMode ? 'bg-gray-700 text-white' : 'bg-white'} shadow-sm`} - /> setNewSectionName(e.target.value)} @@ -1928,12 +1926,6 @@ export default function App() {
{editingSectionId === sec.id ? ( <> - setEditSectionEmoji(e.target.value)} - maxLength={2} - className={`w-12 p-2 rounded-xl border-none outline-none font-bold text-center text-lg ${darkMode ? 'bg-gray-700 text-white' : 'bg-white'} shadow-sm`} - /> setEditSectionName(e.target.value)} @@ -1945,7 +1937,6 @@ export default function App() { ) : ( <> - {sec.emoji}

{sec.name}

diff --git a/src/lib/i18n.js b/src/lib/i18n.js index 783b4ff..a76f834 100644 --- a/src/lib/i18n.js +++ b/src/lib/i18n.js @@ -14,7 +14,7 @@ export const translations = { outfits: "Looks", settings: "Definições", online: "Online", - logout: "Sair do Sistema", + logout: "Sair", overview: "Visão Geral", myCloset: "O Meu Armário", outfitsAndStyle: "Looks & Estilo", @@ -161,8 +161,9 @@ export const translations = { copyToMyCloset: "Copiar para o meu armário", msgSentSuccess: "Mensagem enviada com sucesso!", msgSendError: "Erro ao enviar mensagem. Verifica a tua ligação.", + wishlist: "Carrinho", addFuturePurchase: "Adicionar peça como compra futura", - wishlistDesc: "Lista de Desejos", + wishlistDesc: "Carrinho", someone: "alguém", feedbackTitle: "Suporte e Feedback", feedbackDesc: "Tem alguma ideia, sugestão ou encontrou algum problema? Envie uma mensagem diretamente para nós!", @@ -172,7 +173,7 @@ export const translations = { pasteLink: "Colar Link", pasteSharedLookLink: "Cole o link do look partilhado:", invalidSharedLink: "Link inválido. Certifique-se de copiar o link completo.", -}, + }, EN: { loginModeIntro: "The Future of Your Style", emailPlaceholder: "Email", @@ -346,7 +347,7 @@ export const translations = { pasteLink: "Paste Link", pasteSharedLookLink: "Paste the shared look link:", invalidSharedLink: "Invalid link. Make sure you copied the full link.", -}, + }, ES: { loginModeIntro: "El Futuro de Tu Estilo", emailPlaceholder: "Correo electrónico", @@ -520,7 +521,7 @@ export const translations = { pasteLink: "Pegar Enlace", pasteSharedLookLink: "Pega el enlace del look compartido:", invalidSharedLink: "Enlace no válido. Asegúrate de copiar el enlace completo.", -}, + }, FR: { loginModeIntro: "Le Futur de Ton Style", emailPlaceholder: "E-mail", @@ -694,7 +695,7 @@ export const translations = { pasteLink: "Coller le Lien", pasteSharedLookLink: "Collez le lien du look partagé :", invalidSharedLink: "Lien invalide. Assurez-vous d'avoir copié le lien complet.", -}, + }, DE: { loginModeIntro: "Die Zukunft deines Stils", emailPlaceholder: "E-Mail", @@ -868,5 +869,5 @@ export const translations = { pasteLink: "Link Einfügen", pasteSharedLookLink: "Fügen Sie den Link zum geteilten Look ein:", invalidSharedLink: "Ungültiger Link. Stellen Sie sicher, dass Sie den vollständigen Link kopiert haben.", -} + } };