violet-paginator
Version:
Display, paginate, sort, filter, and update items from the server. violet-paginator is a complete list management library for react/redux applications.
49 lines (48 loc) • 1.06 kB
JavaScript
export default {
greetings: "Hello, %{name}!",
home: {
obey: "Obey the Toad",
sign_in: "Sign In",
home: "Home",
new_user: "Create New User",
recipes: "Recipes",
},
validation: {
required: "Required",
email: "Please enter a valid email address",
matches: "Does not match"
},
recipes: {
name: "Name",
boil_time: "Boil Time",
created_at: "Date Created"
},
sign_in: {
prompt: "Please Sign In",
success: "Authenticated!",
error: "Invalid username or password",
submit: "Sign In",
username: "Username",
password: "Password"
},
users: {
form: {
username: "UserName",
email: "Email",
password: "Password",
password_confirmation: "Confirm Password",
register: "Register",
validation: {
password_confirmation: {
matches: "Passwords don't match"
},
email: {
taken: "Email address already taken"
},
username: {
taken: "UserName already taken"
}
}
}
}
}