Guest User

Untitled

a guest
Oct 20th, 2018
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.45 KB | None | 0 0
  1. //Login.xaml
  2. text01 = "Username: ";
  3. text02 = "Password: ";
  4. text03 = "Register";
  5. text04 = "Login";
  6. text05 = "Exit";
  7. //Login.cs
  8. text06 = "Login was not successful.";
  9. text07 = "User name must have at least " + App.USER_NAME_MIN_LENGTH + " characters.";
  10. text08 = "User password must have at least " + App.USER_PASSWORD_MIN_LENGTH + " characters.";
  11.  
  12. //Register.xaml
  13. text09 = "Enter your username: ";
  14. text10 = "Enter your password: ";
  15. text11 = "Re-enter your password: ";
  16. text12 = "Enter your e-mail: ";
  17. text13 = "Register";
  18. text14 = "Cancel";
  19.  
  20. //Register.cs
  21. text15 = "Entered passwords is not the same.";
  22. text16 = "E-mail adress is not valid.";
  23. text17 = "Registration was successful.";
  24. text18 = "Your user name: ";
  25. text19 = "Your password: ";
  26. text20 = "Your registration e-mail: ";
  27. text21 = "This name is already used by another user. Please choose different username.";
  28. text22 = "User name must have at least " + App.USER_NAME_MIN_LENGTH + " characters.";
  29. text23 = "Password must have at least " + App.USER_PASSWORD_MIN_LENGTH + " characters.";
  30. text24 = "Email must have at least " + App.USER_EMAIL_MIN_LENGTH + " characters.";
  31.  
  32. //Open.xaml
  33. text25 = "User: ";
  34. text26 = "Notes: ";
  35.  
  36. //OpenItem.cs
  37. text27 = "Enter new note's name:";
  38. text28 = "Rename";
  39. text29 = "Cancel";
  40. text30 = "Note was not renamed successfully.";
  41. text31 = "Do you want to remove this note?";
  42. text32 = "Note was not deleted successfully.";
  43.  
  44. //Synchronization.xaml
  45. text33 = "User: ";
  46. text34 = "Online notes: ";
  47. text35 = "Local notes: ";
  48. text36 = "Copy selected notes from server to local place.";
  49. text37 = "Copy selected notes from local place to server.";
  50. text38 = "Remove selected notes.";
  51.  
  52. //Main.xaml
  53. text39 = "Color";
  54. text40 = "Typeface";
  55. text41 = "Clear formatting";
  56. text42 = "Font size";
  57. text43 = "Others";
  58. text44 = "New note";
  59. text45 = "Save note";
  60. text46 = "Open note";
  61. text47 = "Synchronization";
  62.  
  63. //Main.cs
  64. text48 = "This is a new note. Enter note title:";
  65. text49 = "Save";
  66. text50 = "Cancel";
  67. text51 = "Note was not created successfully.";
  68. text52 = "Note was not updated successfully.";
  69. text53 = "Do you want to save actual note?";
  70. text54 = "The note was not loaded correctly.";
  71. text55 = "Word count: ";
  72. text56 = "Character count: ";
  73. text57 = "Line count: ";
  74.  
  75. //Wait.xaml
  76. text58 = "Connecting to database...";
  77.  
  78. //YesNoDialog.xaml
  79. text59 = "Yes";
  80. text60 = "No";
  81.  
  82. text61 = "Some problem with connection to server. Try to check your internet connection.";
Add Comment
Please, Sign In to add comment