Advertisement
Guest User

Untitled

a guest
Aug 8th, 2016
6,580
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.20 KB | None | 0 0
  1. /* Name of the Pokemon Go Plus device */
  2. "Pokemon_Go_Plus" = "Pokemon GO Plus";
  3.  
  4. /* Notification posted when the user captures a pokemon */
  5. "Captured_Pokemon" = "You captured a Pokémon!";
  6.  
  7. /* Notification posted when a user tries to capture a pokemon, and it flees. */
  8. "Pokemon_Escaped" = "The Pokémon fled!";
  9.  
  10. /* Notification posted when a user retrieves items from a pokestop. The argument is the
  11. number of items */
  12. "Retrieved_Items" = "You retrieved %@ items from the Pokéstop.";
  13.  
  14. /* Notification posted when a user retrieves items from a pokestop. The argument is the
  15. number of items */
  16. "Retrieved_an_Item" = "You retrieved an item from the Pokéstop.";
  17.  
  18. /* Notification posted when a user tries to retrieve items from a pokestop but it is
  19. out of range. */
  20. "Pokestop_Out_Of_Range" = "Pokéstop is out of range.";
  21.  
  22. /* Notification posted when a user tries to retrieve items from a pokestop, but it is
  23. currently in its cool down period. */
  24. "Pokestop_Cooldown" = "Pokéstop is cooling down. Try again later.";
  25.  
  26. /* Notification posted when a user does not have any more pokeballs.
  27. This is posted when the user tries to catch a pokemon.*/
  28. "Out_Of_Pokeballs" = "You are out of Pokéballs.";
  29.  
  30. /* Notification posted when the user does not have any more room for a pokemon
  31. in their inventory. This is posted when the user tries to catch a pokemon. */
  32. "Pokemon_Inventory_Full" = "No more room for Pokémon.";
  33.  
  34. /* Notification posted when the user has no more room for items in their inventory.
  35. This is posted when a user tries to retrieve items from a pokestop. */
  36. "Item_Inventory_Full" = "No items retrieved. Your inventory is full.";
  37.  
  38. /* Notification posted when the user's session has expired. 'Pokemon GO Plus' is the
  39. name of the wearable device controlled by this application */
  40. "Session_Ended" = "Your Pokémon GO Plus session has ended. Select this to launch Pokémon GO!";
  41.  
  42. /* Notification posted when the user finds a pokemon that they were tracking. */
  43. "Tracked_Pokemon_Found" = "You found the Pokémon you were tracking.";
  44.  
  45. /* Notification posted when the pokemon the user was tracking is no longer in range. */
  46. "Tracked_Pokemon_Lost" = "The Pokémon you were tracking is gone.";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement