Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.29 KB | None | 0 0
  1. const MESSAGES = {
  2. app: {
  3. header: {},
  4. foother: {},
  5. menu: {
  6. title: "Nawigacja",
  7. dashboard: "Panel główny",
  8.  
  9. subscription: {
  10. label: "Subskrypcje",
  11. add: "Nowa kampania",
  12. list: "Kampanie",
  13.  
  14. },
  15. payment: {
  16. label: "Płatności"
  17. },
  18.  
  19. help: "Pomoc"
  20. }
  21. },
  22.  
  23. auth: {
  24. login: {
  25. label: {
  26. email: "Email",
  27. password: "Hasło",
  28. signUp: "Rejestracja",
  29. resetPassword: "Zapomniałeś hasła?"
  30. },
  31. button: {
  32. login: "Zaloguj"
  33. }
  34. },
  35. signUp: {},
  36. lockScreen: {},
  37. forgotPassword: {},
  38. confirmEmail: {}
  39. },
  40. errorPage: {
  41. e404: {
  42. header: "404",
  43. description: "Przepraszamy, ta strona nie istnieje",
  44. backButton: "Wróc do głównej strony"
  45. },
  46. e500: {
  47. header: "500",
  48. description: "Usługa jest w tym momencie nie dostępna. Spróbuj za chwile",
  49. backButton: "Wróc do głównej strony"
  50. }
  51. }
  52. };
  53.  
  54. module.exports = MESSAGES;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement