From 12c5cf05bae003214434079a2f9e1c011fdb2fa7 Mon Sep 17 00:00:00 2001 From: Benjamin Auder <benjamin.auder@somewhere> Date: Thu, 13 Feb 2020 01:27:07 +0100 Subject: [PATCH] Slight text change --- client/src/components/Chat.vue | 2 +- client/src/translations/en.js | 4 ++-- client/src/translations/es.js | 4 ++-- client/src/translations/fr.js | 4 ++-- client/src/views/Variants.vue | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/client/src/components/Chat.vue b/client/src/components/Chat.vue index 8c1e059a..ae85e736 100644 --- a/client/src/components/Chat.vue +++ b/client/src/components/Chat.vue @@ -1,6 +1,6 @@ <template lang="pug"> div - input#inputChat(type="text" :placeholder="st.tr['Type here']" + input#inputChat(type="text" :placeholder="st.tr['Chat here']" @keyup.enter="sendChat()") button(@click="sendChat()") {{ st.tr["Send"] }} p(v-for="chat in chats.concat(pastChats)") diff --git a/client/src/translations/en.js b/client/src/translations/en.js index 75af8fdf..4d6a9726 100644 --- a/client/src/translations/en.js +++ b/client/src/translations/en.js @@ -18,6 +18,7 @@ export const translations = "Cadence": "Cadence", "Challenge": "Challenge", "Challenge declined": "Challenge declined", + "Chat here": "Chat here", "Connection token sent. Check your emails!": "Connection token sent. Check your emails!", "Contact": "Contact", "Content": "Content", @@ -66,6 +67,7 @@ export const translations = "Please log in to play correspondance games": "Please log in to play correspondance games", "Please select a variant": "Please select a variant", "Practice": "Practice", + "Prefix?": "Prefix?", "Processing... Please wait": "Processing... Please wait", "participant(s):": "participant(s):", "Register": "Register", @@ -86,8 +88,6 @@ export const translations = "Three repetitions": "Three repetitions", "Time": "Time", "To": "To", - "Type first letters...": "Type first letters...", - "Type here": "Type here", "Unknown": "Unknown", "Update": "Update", "Variant": "Variant", diff --git a/client/src/translations/es.js b/client/src/translations/es.js index 73aedac5..f4918f8a 100644 --- a/client/src/translations/es.js +++ b/client/src/translations/es.js @@ -18,6 +18,7 @@ export const translations = "Cadence": "Cadencia", "Challenge": "Desafiar", "Challenge declined": "DesafÃo rechazado", + "Chat here": "Chat aquÃ", "Connection token sent. Check your emails!": "Token de conexión enviado. ¡Revisa tus correos!", "Contact": "Contacto", "Content": "Contenido", @@ -66,6 +67,7 @@ export const translations = "Please log in to play correspondance games": "Inicia sesión para jugar partidas por correspondancia", "Please select a variant": "Por favor seleccione una variante", "Practice": "Práctica", + "Prefix?": "¿Prefijo?", "Processing... Please wait": "Procesando... por favor espere", "participant(s):": "participante(s):", "Register": "Registrarse", @@ -86,8 +88,6 @@ export const translations = "Three repetitions": "Tres repeticiones", "Time": "Tiempo", "To": "A", - "Type first letters...": "Escribe las primeras letras...", - "Type here": "Escribe aquÃ", "Unknown": "Desconocido", "Update": "Actualización", "Variant": "Variante", diff --git a/client/src/translations/fr.js b/client/src/translations/fr.js index c23142c8..6d10338b 100644 --- a/client/src/translations/fr.js +++ b/client/src/translations/fr.js @@ -18,6 +18,7 @@ export const translations = "Cadence": "Cadence", "Challenge": "Défier", "Challenge declined": "Défi refusé", + "Chat here": "Chattez ici", "Connection token sent. Check your emails!": "Token de connection envoyé. Allez voir vos emails !", "Contact": "Contact", "Content": "Contenu", @@ -66,6 +67,7 @@ export const translations = "Please log in to play correspondance games": "Identifiez vous pour jouer des parties par correspondance", "Please select a variant": "Sélectionnez une variante SVP", "Practice": "Pratiquer", + "Prefix?": "Préfixe ?", "Processing... Please wait": "Traitement en cours... Attendez SVP", "participant(s):": "participant(s) :", "Register": "S'enregistrer", @@ -86,8 +88,6 @@ export const translations = "Three repetitions": "Triple répétition", "Time": "Temps", "To": "Ã", - "Type first letters...": "Tapez les premières lettres...", - "Type here": "Tapez ici", "Unknown": "Inconnu", "Update": "Mise à jour", "Variant": "Variante", diff --git a/client/src/views/Variants.vue b/client/src/views/Variants.vue index d166b684..f6643323 100644 --- a/client/src/views/Variants.vue +++ b/client/src/views/Variants.vue @@ -2,7 +2,7 @@ main .row .col-sm-12.col-md-10.col-md-offset-1.col-lg-8.col-lg-offset-2 - input#prefixFilter(v-model="curPrefix" :placeholder="st.tr['Type first letters...']") + input#prefixFilter(v-model="curPrefix" :placeholder="st.tr['Prefix?']") .variant.col-sm-12.col-md-5.col-lg-4( v-for="(v,idx) in filteredVariants" :class="{'col-md-offset-1': idx%2==0, 'col-lg-offset-2': idx%2==0}" -- 2.48.1