Guest User

Untitled

a guest
Jan 24th, 2018
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.31 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
  3. <!-- Title for the application. [CHAR LIMIT=12] -->
  4. <string name="app_name">Μόνο Java</string>
  5.  
  6. <!-- Hint text display in the empty field for the user's name [CHAR LIMIT=20] -->
  7. <string name="name">Όνομα</string>
  8.  
  9. <!-- Button for deducting quantity. [CHAR LIMIT=1] -->
  10. <string name="minus">-</string>
  11.  
  12. <!-- Button for adding quantity. [CHAR LIMIT=1] -->
  13. <string name="plus">+</string>
  14.  
  15. <!-- Button for sending order. [CHAR LIMIT=20] -->
  16. <string name="order">Παραγγελία</string>
  17.  
  18. <!-- Quantity title. [CHAR LIMIT=20] -->
  19. <string name="quantity">Ποσότητα</string>
  20.  
  21. <!-- Chocolate checkbox. [CHAR LIMIT=20] -->
  22. <string name="chocolate">Σοκολάτα</string>
  23.  
  24. <!-- Whipped cream checkbox. [CHAR LIMIT=20] -->
  25. <string name="whipped_cream">Αφρόγαλα</string>
  26.  
  27. <!-- Toppings title. [CHAR LIMIT=20] -->
  28. <string name="toppings">Έξτρα</string>
  29.  
  30. <!-- Thank you. [CHAR LIMIT=20] -->
  31. <string name="thank_you">Ευχαριστούμε!</string>
  32.  
  33. <!-- Min order toast message. [CHAR LIMIT=80] -->
  34. <string name="min_order">Δεν μπορείτε να παραγγείλετε λιγότερο από ένα καφέ!</string>
  35.  
  36. <!-- Max order toast message. [CHAR LIMIT=80] -->
  37. <string name="max_order">Δεν μπορείτε να παραγγείλετε περισσότερους από 100 καφέδες!</string>
  38.  
  39. <!--
  40. Name for the order summary. It will be shown in the format of "Name: Amy" where Amy is the
  41. user's name. [CHAR LIMIT=NONE]
  42. -->
  43. <string name="order_summary_name">Όνομα: <xliff:g id="name" example="Amy">%s</xliff:g></string>
  44.  
  45. <!--
  46. Whipped cream topping for the order summary. It will be shown in the format of
  47. "Add whipped cream? true" or "Add whipped cream? false". [CHAR LIMIT=NONE]
  48. -->
  49. <string name="order_summary_whipped_cream">Προσθήκη αφρόγαλα; <xliff:g id="addWhippedCream" example="true">%b</xliff:g></string>
  50.  
  51. <!--
  52. Chocolate topping for the order summary. It will be shown in the format of
  53. "Add chocolate? true" or "Add chocolate? false". [CHAR LIMIT=NONE]
  54. -->
  55. <string name="order_summary_chocolate">Προσθήκη σοκολάτας; <xliff:g id="addChocolate" example="true">%b</xliff:g></string>
  56.  
  57. <!--
  58. Quantity of coffee cups for the order summary. It will be shown in the format of
  59. "Quantity: 2", where 2 is the number of cups ordered. [CHAR LIMIT=NONE]
  60. -->
  61. <string name="order_summary_quantity">Ποσότητα: <xliff:g id="quantity" example="2">%d</xliff:g></string>
  62.  
  63. <!--
  64. Total price for the order summary. It will be shown in the format of
  65. "Total: $10" where $10 is the price. [CHAR LIMIT=NONE]
  66. -->
  67. <string name="order_summary_price">Σύνολο: <xliff:g id="price" example="$10">%s</xliff:g></string>
  68. <!--
  69. Subject line for the order summary email. It will be in the format of
  70. "Just Java order for Amy" where Amy is the user's name. [CHAR LIMIT=NONE]
  71. -->
  72. <string name="order_summary_email_subject">Παραγγελία για τον/την <xliff:g id="name" example="Amy">%s</xliff:g> από το Μόνο Java</string>
  73. </resources>
Add Comment
Please, Sign In to add comment