Slight text change
authorBenjamin Auder <benjamin.auder@somewhere>
Thu, 13 Feb 2020 00:27:07 +0000 (01:27 +0100)
committerBenjamin Auder <benjamin.auder@somewhere>
Thu, 13 Feb 2020 00:27:07 +0000 (01:27 +0100)
client/src/components/Chat.vue
client/src/translations/en.js
client/src/translations/es.js
client/src/translations/fr.js
client/src/views/Variants.vue

index 8c1e059..ae85e73 100644 (file)
@@ -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)")
index 75af8fd..4d6a972 100644 (file)
@@ -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",
index 73aedac..f4918f8 100644 (file)
@@ -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",
index c23142c..6d10338 100644 (file)
@@ -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",
index d166b68..f664332 100644 (file)
@@ -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}"