Explorar el Código

Added locales folder to project root. There, files index.js, es.json, en.json wereadded to enable identification of device language settings to display app text accordingly.

ErnestoOrtiz2 hace 3 años
padre
commit
3dd7663ba5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      App.js

+ 1
- 1
App.js Ver fichero

@@ -7,7 +7,7 @@ import { t } from './locales/index.js'
7 7
 export default function App() {
8 8
   return (
9 9
     <View style={styles.container}>
10
-      <Text>{t{"Hello"}}</Text>
10
+      <Text>{t("Hola")}</Text>
11 11
       <StatusBar style="auto" />
12 12
     </View>
13 13
   );