diff --git a/app/i18n/locales/en.json b/app/i18n/locales/en.json index 9409049..d860b7a 100644 --- a/app/i18n/locales/en.json +++ b/app/i18n/locales/en.json @@ -2,9 +2,14 @@ "name": "English", "locale": "en", "home": { - "subtitle": "An attempt at a viable alternative to Goodreads", - "temp_left": "Still gotta figure out a design.", - "temp_right": "It's early days, my friends!" + "logged_out_subtitle": "All the Book Buzz in Once Place", + "logged_out_track_books": "Keep track of books you've read, want to read, and are currently reading.", + "logged_out_share_friends": "Share your thoughts about what you're reading and see what your friends think of their books.", + "logged_out_read_rate": "Rate, review, and recommmend books or something. I dunno. It's early days, my friends!", + "logged_out_community_header": "A Look Inside the Hive", + "logged_out_recent_reviews": "Recent Reviews", + "logged_out_recent_updates": "Recent Updates", + "logged_out_join_now": "Join Now!" }, "login": { "email": "Email", @@ -22,6 +27,7 @@ "see_details_tooltip": "Opens Inventaire in a new tab/window" }, "interaction": { + "reload": "Reload", "heart": "Like", "add": "Add to Shelf", "average_rating": "Average Rating", diff --git a/app/views/home/loggedOut.js b/app/views/home/loggedOut.js index 9fb9e6c..83b8b1f 100644 --- a/app/views/home/loggedOut.js +++ b/app/views/home/loggedOut.js @@ -1,9 +1,11 @@ import html from 'choo/html'; export const loggedOutView = (homeController, emit) => { + const { i18n } = homeController; + return [ html`
-

Read Together

+

${i18n.__('home.logged_out_subtitle')}

@@ -13,7 +15,7 @@ export const loggedOutView = (homeController, emit) => {
- Keep track of books you've read, want to read, and are currently reading. + ${i18n.__('home.logged_out_track_books')}
@@ -25,7 +27,7 @@ export const loggedOutView = (homeController, emit) => {
- Share your thoughts about what you're reading and see what your friends think of their books. + ${i18n.__('home.logged_out_share_friends')}
@@ -37,20 +39,20 @@ export const loggedOutView = (homeController, emit) => {
`, html`
-

Join the Community

+

${i18n.__('home.logged_out_community_header')}

-

Recent Reviews

-
@@ -62,8 +64,8 @@ export const loggedOutView = (homeController, emit) => {
-

Recent Updates

-
@@ -75,7 +77,7 @@ export const loggedOutView = (homeController, emit) => {
`, html`
- Join Now! + ${i18n.__('home.logged_out_join_now')}
`, ]; } \ No newline at end of file