motion-flow 0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1099) hide show
  1. checksums.yaml +7 -0
  2. data/flow/base64/android/base64.rb +12 -0
  3. data/flow/base64/base64.rb +27 -0
  4. data/flow/base64/cocoa/base64.rb +11 -0
  5. data/flow/digest/android/digest.rb +33 -0
  6. data/flow/digest/cocoa/digest.rb +40 -0
  7. data/flow/digest/cocoa/libdigest.a +0 -0
  8. data/flow/digest/digest.rb +51 -0
  9. data/flow/json/android/json.rb +66 -0
  10. data/flow/json/cocoa/json.rb +22 -0
  11. data/flow/json/json.rb +14 -0
  12. data/flow/location/android/location_services.rb +105 -0
  13. data/flow/location/cocoa/location_services.rb +88 -0
  14. data/flow/location/location.rb +71 -0
  15. data/flow/net/actions.rb +14 -0
  16. data/flow/net/android/reachability.rb +50 -0
  17. data/flow/net/android/request.rb +87 -0
  18. data/flow/net/android/response_proxy.rb +58 -0
  19. data/flow/net/authorization.rb +42 -0
  20. data/flow/net/cocoa/reachability.rb +47 -0
  21. data/flow/net/cocoa/request.rb +105 -0
  22. data/flow/net/cocoa/response_proxy.rb +53 -0
  23. data/flow/net/config.rb +31 -0
  24. data/flow/net/expectation.rb +61 -0
  25. data/flow/net/header.rb +17 -0
  26. data/flow/net/net.rb +121 -0
  27. data/flow/net/response.rb +58 -0
  28. data/flow/net/session.rb +53 -0
  29. data/flow/net/stubbable.rb +13 -0
  30. data/flow/store/android/store.rb +33 -0
  31. data/flow/store/cocoa/store.rb +21 -0
  32. data/flow/store/store.rb +24 -0
  33. data/flow/task/android/task.rb +57 -0
  34. data/flow/task/cocoa/task.rb +48 -0
  35. data/flow/task/task.rb +73 -0
  36. data/flow/ui/activity_indicator.rb +17 -0
  37. data/flow/ui/alert.rb +26 -0
  38. data/flow/ui/android/activity_indicator.rb +32 -0
  39. data/flow/ui/android/alert.rb +54 -0
  40. data/flow/ui/android/application.rb +32 -0
  41. data/flow/ui/android/armeabi/libcss_node.a +0 -0
  42. data/flow/ui/android/button.rb +78 -0
  43. data/flow/ui/android/camera.rb +131 -0
  44. data/flow/ui/android/color.rb +31 -0
  45. data/flow/ui/android/control.rb +15 -0
  46. data/flow/ui/android/font.rb +70 -0
  47. data/flow/ui/android/image.rb +59 -0
  48. data/flow/ui/android/label.rb +29 -0
  49. data/flow/ui/android/list.rb +90 -0
  50. data/flow/ui/android/navigation.rb +94 -0
  51. data/flow/ui/android/screen.rb +123 -0
  52. data/flow/ui/android/text.rb +55 -0
  53. data/flow/ui/android/text_input.rb +42 -0
  54. data/flow/ui/android/ui.rb +13 -0
  55. data/flow/ui/android/view.rb +88 -0
  56. data/flow/ui/android/web.rb +15 -0
  57. data/flow/ui/android/x86/libcss_node.a +0 -0
  58. data/flow/ui/application.rb +10 -0
  59. data/flow/ui/button.rb +9 -0
  60. data/flow/ui/cocoa/activity_indicator.rb +27 -0
  61. data/flow/ui/cocoa/alert.rb +33 -0
  62. data/flow/ui/cocoa/application.rb +26 -0
  63. data/flow/ui/cocoa/button.rb +60 -0
  64. data/flow/ui/cocoa/camera.rb +104 -0
  65. data/flow/ui/cocoa/color.rb +42 -0
  66. data/flow/ui/cocoa/control.rb +30 -0
  67. data/flow/ui/cocoa/font.rb +49 -0
  68. data/flow/ui/cocoa/image.rb +49 -0
  69. data/flow/ui/cocoa/label.rb +58 -0
  70. data/flow/ui/cocoa/libcss_node.a +0 -0
  71. data/flow/ui/cocoa/list.rb +100 -0
  72. data/flow/ui/cocoa/navigation.rb +96 -0
  73. data/flow/ui/cocoa/screen.rb +81 -0
  74. data/flow/ui/cocoa/text_input.rb +93 -0
  75. data/flow/ui/cocoa/ui.rb +8 -0
  76. data/flow/ui/cocoa/view.rb +108 -0
  77. data/flow/ui/cocoa/web.rb +20 -0
  78. data/flow/ui/color.rb +222 -0
  79. data/flow/ui/css_node.rb +63 -0
  80. data/flow/ui/eventable.rb +29 -0
  81. data/flow/ui/font.rb +44 -0
  82. data/flow/ui/image.rb +9 -0
  83. data/flow/ui/label.rb +8 -0
  84. data/flow/ui/list_row.rb +19 -0
  85. data/flow/ui/navigation.rb +39 -0
  86. data/flow/ui/screen.rb +18 -0
  87. data/flow/ui/text_input.rb +15 -0
  88. data/flow/ui/ui.rb +5 -0
  89. data/flow/ui/view.rb +22 -0
  90. data/lib/android.rb +44 -0
  91. data/lib/cocoa.rb +32 -0
  92. data/lib/common.rb +1 -0
  93. data/lib/motion-flow.rb +243 -0
  94. data/template/flow/files/Gemfile +5 -0
  95. data/template/flow/files/Rakefile +13 -0
  96. data/template/flow/files/app/android/main_activity.rb +6 -0
  97. data/template/flow/files/app/ios/app_delegate.rb +15 -0
  98. data/template/flow/files/config/android.rb.erb +6 -0
  99. data/template/flow/files/config/ios.rb.erb +6 -0
  100. data/template/flow/files/config/osx.rb.erb +6 -0
  101. data/template/flow/files/resources/Default-568h@2x.png +0 -0
  102. data/template/flow/files/resources/Default-667h@2x.png +0 -0
  103. data/template/flow/files/resources/Default-736h@3x.png +0 -0
  104. data/vendor/android/google-play-services_lib/AndroidManifest.xml +26 -0
  105. data/vendor/android/google-play-services_lib/README.txt +17 -0
  106. data/vendor/android/google-play-services_lib/libs/google-play-services.jar +0 -0
  107. data/vendor/android/google-play-services_lib/libs/google-play-services.jar.properties +1 -0
  108. data/vendor/android/google-play-services_lib/proguard.txt +35 -0
  109. data/vendor/android/google-play-services_lib/project.properties +15 -0
  110. data/vendor/android/google-play-services_lib/res/color/common_google_signin_btn_text_dark.xml +14 -0
  111. data/vendor/android/google-play-services_lib/res/color/common_google_signin_btn_text_light.xml +14 -0
  112. data/vendor/android/google-play-services_lib/res/color/common_plus_signin_btn_text_dark.xml +14 -0
  113. data/vendor/android/google-play-services_lib/res/color/common_plus_signin_btn_text_light.xml +14 -0
  114. data/vendor/android/google-play-services_lib/res/color/wallet_primary_text_holo_light.xml +9 -0
  115. data/vendor/android/google-play-services_lib/res/color/wallet_secondary_text_holo_dark.xml +12 -0
  116. data/vendor/android/google-play-services_lib/res/drawable-hdpi/cast_ic_notification_0.png +0 -0
  117. data/vendor/android/google-play-services_lib/res/drawable-hdpi/cast_ic_notification_1.png +0 -0
  118. data/vendor/android/google-play-services_lib/res/drawable-hdpi/cast_ic_notification_2.png +0 -0
  119. data/vendor/android/google-play-services_lib/res/drawable-hdpi/cast_ic_notification_on.png +0 -0
  120. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_full_open_on_phone.png +0 -0
  121. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_dark_disabled.9.png +0 -0
  122. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_dark_focused.9.png +0 -0
  123. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_dark_normal.9.png +0 -0
  124. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_dark_pressed.9.png +0 -0
  125. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_light_disabled.9.png +0 -0
  126. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_light_focused.9.png +0 -0
  127. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_light_normal.9.png +0 -0
  128. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_icon_light_pressed.9.png +0 -0
  129. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_dark_disabled.9.png +0 -0
  130. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_dark_focused.9.png +0 -0
  131. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_dark_normal.9.png +0 -0
  132. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_dark_pressed.9.png +0 -0
  133. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_light_disabled.9.png +0 -0
  134. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_light_focused.9.png +0 -0
  135. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_light_normal.9.png +0 -0
  136. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_google_signin_btn_text_light_pressed.9.png +0 -0
  137. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_ic_googleplayservices.png +0 -0
  138. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_dark_disabled.9.png +0 -0
  139. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_dark_focused.9.png +0 -0
  140. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_dark_normal.9.png +0 -0
  141. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_dark_pressed.9.png +0 -0
  142. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_light_disabled.9.png +0 -0
  143. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_light_focused.9.png +0 -0
  144. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_light_normal.9.png +0 -0
  145. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_icon_light_pressed.9.png +0 -0
  146. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_dark_disabled.9.png +0 -0
  147. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_dark_focused.9.png +0 -0
  148. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_dark_normal.9.png +0 -0
  149. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_dark_pressed.9.png +0 -0
  150. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_light_disabled.9.png +0 -0
  151. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_light_focused.9.png +0 -0
  152. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_light_normal.9.png +0 -0
  153. data/vendor/android/google-play-services_lib/res/drawable-hdpi/common_plus_signin_btn_text_light_pressed.9.png +0 -0
  154. data/vendor/android/google-play-services_lib/res/drawable-hdpi/ic_plusone_medium_off_client.png +0 -0
  155. data/vendor/android/google-play-services_lib/res/drawable-hdpi/ic_plusone_small_off_client.png +0 -0
  156. data/vendor/android/google-play-services_lib/res/drawable-hdpi/ic_plusone_standard_off_client.png +0 -0
  157. data/vendor/android/google-play-services_lib/res/drawable-hdpi/ic_plusone_tall_off_client.png +0 -0
  158. data/vendor/android/google-play-services_lib/res/drawable-hdpi/places_ic_clear.png +0 -0
  159. data/vendor/android/google-play-services_lib/res/drawable-hdpi/places_ic_search.png +0 -0
  160. data/vendor/android/google-play-services_lib/res/drawable-hdpi/powered_by_google_dark.png +0 -0
  161. data/vendor/android/google-play-services_lib/res/drawable-hdpi/powered_by_google_light.png +0 -0
  162. data/vendor/android/google-play-services_lib/res/drawable-mdpi/cast_ic_notification_0.png +0 -0
  163. data/vendor/android/google-play-services_lib/res/drawable-mdpi/cast_ic_notification_1.png +0 -0
  164. data/vendor/android/google-play-services_lib/res/drawable-mdpi/cast_ic_notification_2.png +0 -0
  165. data/vendor/android/google-play-services_lib/res/drawable-mdpi/cast_ic_notification_on.png +0 -0
  166. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_full_open_on_phone.png +0 -0
  167. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_dark_disabled.9.png +0 -0
  168. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_dark_focused.9.png +0 -0
  169. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_dark_normal.9.png +0 -0
  170. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_dark_pressed.9.png +0 -0
  171. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_light_disabled.9.png +0 -0
  172. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_light_focused.9.png +0 -0
  173. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_light_normal.9.png +0 -0
  174. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_icon_light_pressed.9.png +0 -0
  175. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_dark_disabled.9.png +0 -0
  176. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_dark_focused.9.png +0 -0
  177. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_dark_normal.9.png +0 -0
  178. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_dark_pressed.9.png +0 -0
  179. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_light_disabled.9.png +0 -0
  180. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_light_focused.9.png +0 -0
  181. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_light_normal.9.png +0 -0
  182. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_google_signin_btn_text_light_pressed.9.png +0 -0
  183. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_dark_disabled.9.png +0 -0
  184. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_dark_focused.9.png +0 -0
  185. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_dark_normal.9.png +0 -0
  186. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_dark_pressed.9.png +0 -0
  187. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_light_disabled.9.png +0 -0
  188. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_light_focused.9.png +0 -0
  189. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_light_normal.9.png +0 -0
  190. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_icon_light_pressed.9.png +0 -0
  191. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_dark_disabled.9.png +0 -0
  192. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_dark_focused.9.png +0 -0
  193. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_dark_normal.9.png +0 -0
  194. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_dark_pressed.9.png +0 -0
  195. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_light_disabled.9.png +0 -0
  196. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_light_focused.9.png +0 -0
  197. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_light_normal.9.png +0 -0
  198. data/vendor/android/google-play-services_lib/res/drawable-mdpi/common_plus_signin_btn_text_light_pressed.9.png +0 -0
  199. data/vendor/android/google-play-services_lib/res/drawable-mdpi/ic_plusone_medium_off_client.png +0 -0
  200. data/vendor/android/google-play-services_lib/res/drawable-mdpi/ic_plusone_small_off_client.png +0 -0
  201. data/vendor/android/google-play-services_lib/res/drawable-mdpi/ic_plusone_standard_off_client.png +0 -0
  202. data/vendor/android/google-play-services_lib/res/drawable-mdpi/ic_plusone_tall_off_client.png +0 -0
  203. data/vendor/android/google-play-services_lib/res/drawable-mdpi/places_ic_clear.png +0 -0
  204. data/vendor/android/google-play-services_lib/res/drawable-mdpi/places_ic_search.png +0 -0
  205. data/vendor/android/google-play-services_lib/res/drawable-mdpi/powered_by_google_dark.png +0 -0
  206. data/vendor/android/google-play-services_lib/res/drawable-mdpi/powered_by_google_light.png +0 -0
  207. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_full_open_on_phone.png +0 -0
  208. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_dark_disabled.9.png +0 -0
  209. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_dark_focused.9.png +0 -0
  210. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_dark_normal.9.png +0 -0
  211. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_dark_pressed.9.png +0 -0
  212. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_light_disabled.9.png +0 -0
  213. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_light_focused.9.png +0 -0
  214. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_light_normal.9.png +0 -0
  215. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_icon_light_pressed.9.png +0 -0
  216. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_dark_disabled.9.png +0 -0
  217. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_dark_focused.9.png +0 -0
  218. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_dark_normal.9.png +0 -0
  219. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_dark_pressed.9.png +0 -0
  220. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_light_disabled.9.png +0 -0
  221. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_light_focused.9.png +0 -0
  222. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_light_normal.9.png +0 -0
  223. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_google_signin_btn_text_light_pressed.9.png +0 -0
  224. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_dark_disabled.9.png +0 -0
  225. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_dark_focused.9.png +0 -0
  226. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_dark_normal.9.png +0 -0
  227. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_dark_pressed.9.png +0 -0
  228. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_light_disabled.9.png +0 -0
  229. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_light_focused.9.png +0 -0
  230. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_light_normal.9.png +0 -0
  231. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_icon_light_pressed.9.png +0 -0
  232. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_dark_disabled.9.png +0 -0
  233. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_dark_focused.9.png +0 -0
  234. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_dark_normal.9.png +0 -0
  235. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_dark_pressed.9.png +0 -0
  236. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_light_disabled.9.png +0 -0
  237. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_light_focused.9.png +0 -0
  238. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_light_normal.9.png +0 -0
  239. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/common_plus_signin_btn_text_light_pressed.9.png +0 -0
  240. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/ic_plusone_medium_off_client.png +0 -0
  241. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/ic_plusone_small_off_client.png +0 -0
  242. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/ic_plusone_standard_off_client.png +0 -0
  243. data/vendor/android/google-play-services_lib/res/drawable-tvdpi/ic_plusone_tall_off_client.png +0 -0
  244. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/cast_ic_notification_0.png +0 -0
  245. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/cast_ic_notification_1.png +0 -0
  246. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/cast_ic_notification_2.png +0 -0
  247. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/cast_ic_notification_on.png +0 -0
  248. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_full_open_on_phone.png +0 -0
  249. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_dark_disabled.9.png +0 -0
  250. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_dark_focused.9.png +0 -0
  251. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_dark_normal.9.png +0 -0
  252. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_dark_pressed.9.png +0 -0
  253. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_light_disabled.9.png +0 -0
  254. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_light_focused.9.png +0 -0
  255. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_light_normal.9.png +0 -0
  256. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_icon_light_pressed.9.png +0 -0
  257. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_dark_disabled.9.png +0 -0
  258. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_dark_focused.9.png +0 -0
  259. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_dark_normal.9.png +0 -0
  260. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_dark_pressed.9.png +0 -0
  261. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_light_disabled.9.png +0 -0
  262. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_light_focused.9.png +0 -0
  263. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_light_normal.9.png +0 -0
  264. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_google_signin_btn_text_light_pressed.9.png +0 -0
  265. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_dark_disabled.9.png +0 -0
  266. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_dark_focused.9.png +0 -0
  267. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_dark_normal.9.png +0 -0
  268. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_dark_pressed.9.png +0 -0
  269. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_light_disabled.9.png +0 -0
  270. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_light_focused.9.png +0 -0
  271. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_light_normal.9.png +0 -0
  272. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_icon_light_pressed.9.png +0 -0
  273. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_dark_disabled.9.png +0 -0
  274. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_dark_focused.9.png +0 -0
  275. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_dark_normal.9.png +0 -0
  276. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_dark_pressed.9.png +0 -0
  277. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_light_disabled.9.png +0 -0
  278. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_light_focused.9.png +0 -0
  279. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_light_normal.9.png +0 -0
  280. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/common_plus_signin_btn_text_light_pressed.9.png +0 -0
  281. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/ic_plusone_medium_off_client.png +0 -0
  282. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/ic_plusone_small_off_client.png +0 -0
  283. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/ic_plusone_standard_off_client.png +0 -0
  284. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/ic_plusone_tall_off_client.png +0 -0
  285. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/places_ic_clear.png +0 -0
  286. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/places_ic_search.png +0 -0
  287. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/powered_by_google_dark.png +0 -0
  288. data/vendor/android/google-play-services_lib/res/drawable-xhdpi/powered_by_google_light.png +0 -0
  289. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/cast_ic_notification_0.png +0 -0
  290. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/cast_ic_notification_1.png +0 -0
  291. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/cast_ic_notification_2.png +0 -0
  292. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/cast_ic_notification_on.png +0 -0
  293. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_full_open_on_phone.png +0 -0
  294. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_dark_disabled.9.png +0 -0
  295. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_dark_focused.9.png +0 -0
  296. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_dark_normal.9.png +0 -0
  297. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_dark_pressed.9.png +0 -0
  298. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_light_disabled.9.png +0 -0
  299. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_light_focused.9.png +0 -0
  300. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_light_normal.9.png +0 -0
  301. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_icon_light_pressed.9.png +0 -0
  302. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_dark_disabled.9.png +0 -0
  303. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_dark_focused.9.png +0 -0
  304. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_dark_normal.9.png +0 -0
  305. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_dark_pressed.9.png +0 -0
  306. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_light_disabled.9.png +0 -0
  307. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_light_focused.9.png +0 -0
  308. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_light_normal.9.png +0 -0
  309. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_google_signin_btn_text_light_pressed.9.png +0 -0
  310. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_dark_disabled.9.png +0 -0
  311. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_dark_focused.9.png +0 -0
  312. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_dark_normal.9.png +0 -0
  313. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_dark_pressed.9.png +0 -0
  314. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_light_disabled.9.png +0 -0
  315. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_light_focused.9.png +0 -0
  316. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_light_normal.9.png +0 -0
  317. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_icon_light_pressed.9.png +0 -0
  318. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_dark_disabled.9.png +0 -0
  319. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_dark_focused.9.png +0 -0
  320. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_dark_normal.9.png +0 -0
  321. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_dark_pressed.9.png +0 -0
  322. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_light_disabled.9.png +0 -0
  323. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_light_focused.9.png +0 -0
  324. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_light_normal.9.png +0 -0
  325. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/common_plus_signin_btn_text_light_pressed.9.png +0 -0
  326. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/ic_plusone_medium_off_client.png +0 -0
  327. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/ic_plusone_small_off_client.png +0 -0
  328. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/ic_plusone_standard_off_client.png +0 -0
  329. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/ic_plusone_tall_off_client.png +0 -0
  330. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/places_ic_clear.png +0 -0
  331. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/places_ic_search.png +0 -0
  332. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/powered_by_google_dark.png +0 -0
  333. data/vendor/android/google-play-services_lib/res/drawable-xxhdpi/powered_by_google_light.png +0 -0
  334. data/vendor/android/google-play-services_lib/res/drawable-xxxhdpi/places_ic_clear.png +0 -0
  335. data/vendor/android/google-play-services_lib/res/drawable-xxxhdpi/places_ic_search.png +0 -0
  336. data/vendor/android/google-play-services_lib/res/drawable-xxxhdpi/powered_by_google_dark.png +0 -0
  337. data/vendor/android/google-play-services_lib/res/drawable-xxxhdpi/powered_by_google_light.png +0 -0
  338. data/vendor/android/google-play-services_lib/res/drawable/cast_ic_notification_connecting.xml +11 -0
  339. data/vendor/android/google-play-services_lib/res/drawable/common_google_signin_btn_icon_dark.xml +14 -0
  340. data/vendor/android/google-play-services_lib/res/drawable/common_google_signin_btn_icon_light.xml +14 -0
  341. data/vendor/android/google-play-services_lib/res/drawable/common_google_signin_btn_text_dark.xml +16 -0
  342. data/vendor/android/google-play-services_lib/res/drawable/common_google_signin_btn_text_light.xml +14 -0
  343. data/vendor/android/google-play-services_lib/res/drawable/common_plus_signin_btn_icon_dark.xml +14 -0
  344. data/vendor/android/google-play-services_lib/res/drawable/common_plus_signin_btn_icon_light.xml +14 -0
  345. data/vendor/android/google-play-services_lib/res/drawable/common_plus_signin_btn_text_dark.xml +14 -0
  346. data/vendor/android/google-play-services_lib/res/drawable/common_plus_signin_btn_text_light.xml +14 -0
  347. data/vendor/android/google-play-services_lib/res/layout-v21/place_autocomplete_fragment.xml +53 -0
  348. data/vendor/android/google-play-services_lib/res/layout/place_autocomplete_fragment.xml +53 -0
  349. data/vendor/android/google-play-services_lib/res/layout/place_autocomplete_item_powered_by_google.xml +41 -0
  350. data/vendor/android/google-play-services_lib/res/layout/place_autocomplete_item_prediction.xml +68 -0
  351. data/vendor/android/google-play-services_lib/res/layout/place_autocomplete_progress.xml +9 -0
  352. data/vendor/android/google-play-services_lib/res/raw/gtm_analytics +0 -0
  353. data/vendor/android/google-play-services_lib/res/values-af/base_strings.xml +32 -0
  354. data/vendor/android/google-play-services_lib/res/values-af/common_strings.xml +5 -0
  355. data/vendor/android/google-play-services_lib/res/values-af/location_strings.xml +8 -0
  356. data/vendor/android/google-play-services_lib/res/values-am/base_strings.xml +32 -0
  357. data/vendor/android/google-play-services_lib/res/values-am/common_strings.xml +5 -0
  358. data/vendor/android/google-play-services_lib/res/values-am/location_strings.xml +8 -0
  359. data/vendor/android/google-play-services_lib/res/values-am/wallet_strings.xml +7 -0
  360. data/vendor/android/google-play-services_lib/res/values-ar/base_strings.xml +32 -0
  361. data/vendor/android/google-play-services_lib/res/values-ar/common_strings.xml +5 -0
  362. data/vendor/android/google-play-services_lib/res/values-ar/location_strings.xml +8 -0
  363. data/vendor/android/google-play-services_lib/res/values-ar/wallet_strings.xml +7 -0
  364. data/vendor/android/google-play-services_lib/res/values-az-rAZ/base_strings.xml +32 -0
  365. data/vendor/android/google-play-services_lib/res/values-az-rAZ/common_strings.xml +5 -0
  366. data/vendor/android/google-play-services_lib/res/values-az-rAZ/location_strings.xml +8 -0
  367. data/vendor/android/google-play-services_lib/res/values-bg/base_strings.xml +32 -0
  368. data/vendor/android/google-play-services_lib/res/values-bg/common_strings.xml +5 -0
  369. data/vendor/android/google-play-services_lib/res/values-bg/location_strings.xml +8 -0
  370. data/vendor/android/google-play-services_lib/res/values-bg/wallet_strings.xml +7 -0
  371. data/vendor/android/google-play-services_lib/res/values-bn-rBD/base_strings.xml +32 -0
  372. data/vendor/android/google-play-services_lib/res/values-bn-rBD/common_strings.xml +5 -0
  373. data/vendor/android/google-play-services_lib/res/values-bn-rBD/location_strings.xml +8 -0
  374. data/vendor/android/google-play-services_lib/res/values-ca/base_strings.xml +32 -0
  375. data/vendor/android/google-play-services_lib/res/values-ca/common_strings.xml +5 -0
  376. data/vendor/android/google-play-services_lib/res/values-ca/location_strings.xml +8 -0
  377. data/vendor/android/google-play-services_lib/res/values-ca/wallet_strings.xml +7 -0
  378. data/vendor/android/google-play-services_lib/res/values-cs/base_strings.xml +32 -0
  379. data/vendor/android/google-play-services_lib/res/values-cs/common_strings.xml +5 -0
  380. data/vendor/android/google-play-services_lib/res/values-cs/location_strings.xml +8 -0
  381. data/vendor/android/google-play-services_lib/res/values-cs/wallet_strings.xml +7 -0
  382. data/vendor/android/google-play-services_lib/res/values-da/base_strings.xml +32 -0
  383. data/vendor/android/google-play-services_lib/res/values-da/common_strings.xml +5 -0
  384. data/vendor/android/google-play-services_lib/res/values-da/location_strings.xml +8 -0
  385. data/vendor/android/google-play-services_lib/res/values-da/wallet_strings.xml +7 -0
  386. data/vendor/android/google-play-services_lib/res/values-de/base_strings.xml +32 -0
  387. data/vendor/android/google-play-services_lib/res/values-de/common_strings.xml +5 -0
  388. data/vendor/android/google-play-services_lib/res/values-de/location_strings.xml +8 -0
  389. data/vendor/android/google-play-services_lib/res/values-de/wallet_strings.xml +7 -0
  390. data/vendor/android/google-play-services_lib/res/values-el/base_strings.xml +32 -0
  391. data/vendor/android/google-play-services_lib/res/values-el/common_strings.xml +5 -0
  392. data/vendor/android/google-play-services_lib/res/values-el/location_strings.xml +8 -0
  393. data/vendor/android/google-play-services_lib/res/values-el/wallet_strings.xml +7 -0
  394. data/vendor/android/google-play-services_lib/res/values-en-rAU/base_strings.xml +32 -0
  395. data/vendor/android/google-play-services_lib/res/values-en-rAU/common_strings.xml +5 -0
  396. data/vendor/android/google-play-services_lib/res/values-en-rAU/location_strings.xml +8 -0
  397. data/vendor/android/google-play-services_lib/res/values-en-rAU/wallet_strings.xml +7 -0
  398. data/vendor/android/google-play-services_lib/res/values-en-rGB/base_strings.xml +32 -0
  399. data/vendor/android/google-play-services_lib/res/values-en-rGB/common_strings.xml +5 -0
  400. data/vendor/android/google-play-services_lib/res/values-en-rGB/location_strings.xml +8 -0
  401. data/vendor/android/google-play-services_lib/res/values-en-rGB/wallet_strings.xml +7 -0
  402. data/vendor/android/google-play-services_lib/res/values-en-rIN/base_strings.xml +32 -0
  403. data/vendor/android/google-play-services_lib/res/values-en-rIN/common_strings.xml +5 -0
  404. data/vendor/android/google-play-services_lib/res/values-en-rIN/location_strings.xml +8 -0
  405. data/vendor/android/google-play-services_lib/res/values-en-rIN/wallet_strings.xml +7 -0
  406. data/vendor/android/google-play-services_lib/res/values-es-rUS/base_strings.xml +32 -0
  407. data/vendor/android/google-play-services_lib/res/values-es-rUS/common_strings.xml +5 -0
  408. data/vendor/android/google-play-services_lib/res/values-es-rUS/location_strings.xml +8 -0
  409. data/vendor/android/google-play-services_lib/res/values-es-rUS/wallet_strings.xml +7 -0
  410. data/vendor/android/google-play-services_lib/res/values-es/base_strings.xml +32 -0
  411. data/vendor/android/google-play-services_lib/res/values-es/common_strings.xml +5 -0
  412. data/vendor/android/google-play-services_lib/res/values-es/location_strings.xml +8 -0
  413. data/vendor/android/google-play-services_lib/res/values-es/wallet_strings.xml +7 -0
  414. data/vendor/android/google-play-services_lib/res/values-et-rEE/base_strings.xml +32 -0
  415. data/vendor/android/google-play-services_lib/res/values-et-rEE/common_strings.xml +5 -0
  416. data/vendor/android/google-play-services_lib/res/values-et-rEE/location_strings.xml +8 -0
  417. data/vendor/android/google-play-services_lib/res/values-eu-rES/base_strings.xml +32 -0
  418. data/vendor/android/google-play-services_lib/res/values-eu-rES/common_strings.xml +5 -0
  419. data/vendor/android/google-play-services_lib/res/values-eu-rES/location_strings.xml +8 -0
  420. data/vendor/android/google-play-services_lib/res/values-fa/base_strings.xml +32 -0
  421. data/vendor/android/google-play-services_lib/res/values-fa/common_strings.xml +5 -0
  422. data/vendor/android/google-play-services_lib/res/values-fa/location_strings.xml +8 -0
  423. data/vendor/android/google-play-services_lib/res/values-fa/wallet_strings.xml +7 -0
  424. data/vendor/android/google-play-services_lib/res/values-fi/base_strings.xml +32 -0
  425. data/vendor/android/google-play-services_lib/res/values-fi/common_strings.xml +5 -0
  426. data/vendor/android/google-play-services_lib/res/values-fi/location_strings.xml +8 -0
  427. data/vendor/android/google-play-services_lib/res/values-fi/wallet_strings.xml +7 -0
  428. data/vendor/android/google-play-services_lib/res/values-fr-rCA/base_strings.xml +32 -0
  429. data/vendor/android/google-play-services_lib/res/values-fr-rCA/common_strings.xml +5 -0
  430. data/vendor/android/google-play-services_lib/res/values-fr-rCA/location_strings.xml +8 -0
  431. data/vendor/android/google-play-services_lib/res/values-fr/base_strings.xml +32 -0
  432. data/vendor/android/google-play-services_lib/res/values-fr/common_strings.xml +5 -0
  433. data/vendor/android/google-play-services_lib/res/values-fr/location_strings.xml +8 -0
  434. data/vendor/android/google-play-services_lib/res/values-fr/wallet_strings.xml +7 -0
  435. data/vendor/android/google-play-services_lib/res/values-gl-rES/base_strings.xml +32 -0
  436. data/vendor/android/google-play-services_lib/res/values-gl-rES/common_strings.xml +5 -0
  437. data/vendor/android/google-play-services_lib/res/values-gl-rES/location_strings.xml +8 -0
  438. data/vendor/android/google-play-services_lib/res/values-gu-rIN/base_strings.xml +32 -0
  439. data/vendor/android/google-play-services_lib/res/values-gu-rIN/common_strings.xml +5 -0
  440. data/vendor/android/google-play-services_lib/res/values-gu-rIN/location_strings.xml +8 -0
  441. data/vendor/android/google-play-services_lib/res/values-hi/base_strings.xml +32 -0
  442. data/vendor/android/google-play-services_lib/res/values-hi/common_strings.xml +5 -0
  443. data/vendor/android/google-play-services_lib/res/values-hi/location_strings.xml +8 -0
  444. data/vendor/android/google-play-services_lib/res/values-hi/wallet_strings.xml +7 -0
  445. data/vendor/android/google-play-services_lib/res/values-hr/base_strings.xml +32 -0
  446. data/vendor/android/google-play-services_lib/res/values-hr/common_strings.xml +5 -0
  447. data/vendor/android/google-play-services_lib/res/values-hr/location_strings.xml +8 -0
  448. data/vendor/android/google-play-services_lib/res/values-hr/wallet_strings.xml +7 -0
  449. data/vendor/android/google-play-services_lib/res/values-hu/base_strings.xml +32 -0
  450. data/vendor/android/google-play-services_lib/res/values-hu/common_strings.xml +5 -0
  451. data/vendor/android/google-play-services_lib/res/values-hu/location_strings.xml +8 -0
  452. data/vendor/android/google-play-services_lib/res/values-hu/wallet_strings.xml +7 -0
  453. data/vendor/android/google-play-services_lib/res/values-hy-rAM/base_strings.xml +32 -0
  454. data/vendor/android/google-play-services_lib/res/values-hy-rAM/common_strings.xml +5 -0
  455. data/vendor/android/google-play-services_lib/res/values-hy-rAM/location_strings.xml +8 -0
  456. data/vendor/android/google-play-services_lib/res/values-in/base_strings.xml +32 -0
  457. data/vendor/android/google-play-services_lib/res/values-in/common_strings.xml +5 -0
  458. data/vendor/android/google-play-services_lib/res/values-in/location_strings.xml +8 -0
  459. data/vendor/android/google-play-services_lib/res/values-in/wallet_strings.xml +7 -0
  460. data/vendor/android/google-play-services_lib/res/values-is-rIS/base_strings.xml +32 -0
  461. data/vendor/android/google-play-services_lib/res/values-is-rIS/common_strings.xml +5 -0
  462. data/vendor/android/google-play-services_lib/res/values-is-rIS/location_strings.xml +8 -0
  463. data/vendor/android/google-play-services_lib/res/values-it/base_strings.xml +32 -0
  464. data/vendor/android/google-play-services_lib/res/values-it/common_strings.xml +5 -0
  465. data/vendor/android/google-play-services_lib/res/values-it/location_strings.xml +8 -0
  466. data/vendor/android/google-play-services_lib/res/values-it/wallet_strings.xml +7 -0
  467. data/vendor/android/google-play-services_lib/res/values-iw/base_strings.xml +32 -0
  468. data/vendor/android/google-play-services_lib/res/values-iw/common_strings.xml +5 -0
  469. data/vendor/android/google-play-services_lib/res/values-iw/location_strings.xml +8 -0
  470. data/vendor/android/google-play-services_lib/res/values-iw/wallet_strings.xml +7 -0
  471. data/vendor/android/google-play-services_lib/res/values-ja/base_strings.xml +32 -0
  472. data/vendor/android/google-play-services_lib/res/values-ja/common_strings.xml +5 -0
  473. data/vendor/android/google-play-services_lib/res/values-ja/location_strings.xml +8 -0
  474. data/vendor/android/google-play-services_lib/res/values-ja/wallet_strings.xml +7 -0
  475. data/vendor/android/google-play-services_lib/res/values-ka-rGE/base_strings.xml +32 -0
  476. data/vendor/android/google-play-services_lib/res/values-ka-rGE/common_strings.xml +5 -0
  477. data/vendor/android/google-play-services_lib/res/values-ka-rGE/location_strings.xml +8 -0
  478. data/vendor/android/google-play-services_lib/res/values-kk-rKZ/base_strings.xml +32 -0
  479. data/vendor/android/google-play-services_lib/res/values-kk-rKZ/common_strings.xml +5 -0
  480. data/vendor/android/google-play-services_lib/res/values-kk-rKZ/location_strings.xml +8 -0
  481. data/vendor/android/google-play-services_lib/res/values-km-rKH/base_strings.xml +32 -0
  482. data/vendor/android/google-play-services_lib/res/values-km-rKH/common_strings.xml +5 -0
  483. data/vendor/android/google-play-services_lib/res/values-km-rKH/location_strings.xml +8 -0
  484. data/vendor/android/google-play-services_lib/res/values-kn-rIN/base_strings.xml +32 -0
  485. data/vendor/android/google-play-services_lib/res/values-kn-rIN/common_strings.xml +5 -0
  486. data/vendor/android/google-play-services_lib/res/values-kn-rIN/location_strings.xml +8 -0
  487. data/vendor/android/google-play-services_lib/res/values-ko/base_strings.xml +32 -0
  488. data/vendor/android/google-play-services_lib/res/values-ko/common_strings.xml +5 -0
  489. data/vendor/android/google-play-services_lib/res/values-ko/location_strings.xml +8 -0
  490. data/vendor/android/google-play-services_lib/res/values-ko/wallet_strings.xml +7 -0
  491. data/vendor/android/google-play-services_lib/res/values-ky-rKG/base_strings.xml +32 -0
  492. data/vendor/android/google-play-services_lib/res/values-ky-rKG/common_strings.xml +5 -0
  493. data/vendor/android/google-play-services_lib/res/values-ky-rKG/location_strings.xml +8 -0
  494. data/vendor/android/google-play-services_lib/res/values-lo-rLA/base_strings.xml +32 -0
  495. data/vendor/android/google-play-services_lib/res/values-lo-rLA/common_strings.xml +5 -0
  496. data/vendor/android/google-play-services_lib/res/values-lo-rLA/location_strings.xml +8 -0
  497. data/vendor/android/google-play-services_lib/res/values-lt/base_strings.xml +32 -0
  498. data/vendor/android/google-play-services_lib/res/values-lt/common_strings.xml +5 -0
  499. data/vendor/android/google-play-services_lib/res/values-lt/location_strings.xml +8 -0
  500. data/vendor/android/google-play-services_lib/res/values-lt/wallet_strings.xml +7 -0
  501. data/vendor/android/google-play-services_lib/res/values-lv/base_strings.xml +32 -0
  502. data/vendor/android/google-play-services_lib/res/values-lv/common_strings.xml +5 -0
  503. data/vendor/android/google-play-services_lib/res/values-lv/location_strings.xml +8 -0
  504. data/vendor/android/google-play-services_lib/res/values-lv/wallet_strings.xml +7 -0
  505. data/vendor/android/google-play-services_lib/res/values-mk-rMK/base_strings.xml +32 -0
  506. data/vendor/android/google-play-services_lib/res/values-mk-rMK/common_strings.xml +5 -0
  507. data/vendor/android/google-play-services_lib/res/values-mk-rMK/location_strings.xml +8 -0
  508. data/vendor/android/google-play-services_lib/res/values-ml-rIN/base_strings.xml +32 -0
  509. data/vendor/android/google-play-services_lib/res/values-ml-rIN/common_strings.xml +5 -0
  510. data/vendor/android/google-play-services_lib/res/values-ml-rIN/location_strings.xml +8 -0
  511. data/vendor/android/google-play-services_lib/res/values-mn-rMN/base_strings.xml +32 -0
  512. data/vendor/android/google-play-services_lib/res/values-mn-rMN/common_strings.xml +5 -0
  513. data/vendor/android/google-play-services_lib/res/values-mn-rMN/location_strings.xml +8 -0
  514. data/vendor/android/google-play-services_lib/res/values-mr-rIN/base_strings.xml +32 -0
  515. data/vendor/android/google-play-services_lib/res/values-mr-rIN/common_strings.xml +5 -0
  516. data/vendor/android/google-play-services_lib/res/values-mr-rIN/location_strings.xml +8 -0
  517. data/vendor/android/google-play-services_lib/res/values-ms-rMY/base_strings.xml +32 -0
  518. data/vendor/android/google-play-services_lib/res/values-ms-rMY/common_strings.xml +5 -0
  519. data/vendor/android/google-play-services_lib/res/values-ms-rMY/location_strings.xml +8 -0
  520. data/vendor/android/google-play-services_lib/res/values-ms-rMY/wallet_strings.xml +7 -0
  521. data/vendor/android/google-play-services_lib/res/values-my-rMM/base_strings.xml +32 -0
  522. data/vendor/android/google-play-services_lib/res/values-my-rMM/common_strings.xml +5 -0
  523. data/vendor/android/google-play-services_lib/res/values-my-rMM/location_strings.xml +8 -0
  524. data/vendor/android/google-play-services_lib/res/values-nb/base_strings.xml +32 -0
  525. data/vendor/android/google-play-services_lib/res/values-nb/common_strings.xml +5 -0
  526. data/vendor/android/google-play-services_lib/res/values-nb/location_strings.xml +8 -0
  527. data/vendor/android/google-play-services_lib/res/values-nb/wallet_strings.xml +7 -0
  528. data/vendor/android/google-play-services_lib/res/values-ne-rNP/base_strings.xml +32 -0
  529. data/vendor/android/google-play-services_lib/res/values-ne-rNP/common_strings.xml +5 -0
  530. data/vendor/android/google-play-services_lib/res/values-ne-rNP/location_strings.xml +8 -0
  531. data/vendor/android/google-play-services_lib/res/values-nl/base_strings.xml +32 -0
  532. data/vendor/android/google-play-services_lib/res/values-nl/common_strings.xml +5 -0
  533. data/vendor/android/google-play-services_lib/res/values-nl/location_strings.xml +8 -0
  534. data/vendor/android/google-play-services_lib/res/values-nl/wallet_strings.xml +7 -0
  535. data/vendor/android/google-play-services_lib/res/values-pa-rIN/base_strings.xml +32 -0
  536. data/vendor/android/google-play-services_lib/res/values-pa-rIN/common_strings.xml +5 -0
  537. data/vendor/android/google-play-services_lib/res/values-pa-rIN/location_strings.xml +8 -0
  538. data/vendor/android/google-play-services_lib/res/values-pl/base_strings.xml +32 -0
  539. data/vendor/android/google-play-services_lib/res/values-pl/common_strings.xml +5 -0
  540. data/vendor/android/google-play-services_lib/res/values-pl/location_strings.xml +8 -0
  541. data/vendor/android/google-play-services_lib/res/values-pl/wallet_strings.xml +7 -0
  542. data/vendor/android/google-play-services_lib/res/values-pt-rBR/base_strings.xml +32 -0
  543. data/vendor/android/google-play-services_lib/res/values-pt-rBR/common_strings.xml +5 -0
  544. data/vendor/android/google-play-services_lib/res/values-pt-rBR/location_strings.xml +8 -0
  545. data/vendor/android/google-play-services_lib/res/values-pt-rBR/wallet_strings.xml +7 -0
  546. data/vendor/android/google-play-services_lib/res/values-pt-rPT/base_strings.xml +32 -0
  547. data/vendor/android/google-play-services_lib/res/values-pt-rPT/common_strings.xml +5 -0
  548. data/vendor/android/google-play-services_lib/res/values-pt-rPT/location_strings.xml +8 -0
  549. data/vendor/android/google-play-services_lib/res/values-pt-rPT/wallet_strings.xml +7 -0
  550. data/vendor/android/google-play-services_lib/res/values-pt/base_strings.xml +32 -0
  551. data/vendor/android/google-play-services_lib/res/values-pt/common_strings.xml +5 -0
  552. data/vendor/android/google-play-services_lib/res/values-pt/location_strings.xml +8 -0
  553. data/vendor/android/google-play-services_lib/res/values-pt/wallet_strings.xml +7 -0
  554. data/vendor/android/google-play-services_lib/res/values-ro/base_strings.xml +32 -0
  555. data/vendor/android/google-play-services_lib/res/values-ro/common_strings.xml +5 -0
  556. data/vendor/android/google-play-services_lib/res/values-ro/location_strings.xml +8 -0
  557. data/vendor/android/google-play-services_lib/res/values-ro/wallet_strings.xml +7 -0
  558. data/vendor/android/google-play-services_lib/res/values-ru/base_strings.xml +32 -0
  559. data/vendor/android/google-play-services_lib/res/values-ru/common_strings.xml +5 -0
  560. data/vendor/android/google-play-services_lib/res/values-ru/location_strings.xml +8 -0
  561. data/vendor/android/google-play-services_lib/res/values-ru/wallet_strings.xml +7 -0
  562. data/vendor/android/google-play-services_lib/res/values-si-rLK/base_strings.xml +32 -0
  563. data/vendor/android/google-play-services_lib/res/values-si-rLK/common_strings.xml +5 -0
  564. data/vendor/android/google-play-services_lib/res/values-si-rLK/location_strings.xml +8 -0
  565. data/vendor/android/google-play-services_lib/res/values-sk/base_strings.xml +32 -0
  566. data/vendor/android/google-play-services_lib/res/values-sk/common_strings.xml +5 -0
  567. data/vendor/android/google-play-services_lib/res/values-sk/location_strings.xml +8 -0
  568. data/vendor/android/google-play-services_lib/res/values-sk/wallet_strings.xml +7 -0
  569. data/vendor/android/google-play-services_lib/res/values-sl/base_strings.xml +32 -0
  570. data/vendor/android/google-play-services_lib/res/values-sl/common_strings.xml +5 -0
  571. data/vendor/android/google-play-services_lib/res/values-sl/location_strings.xml +8 -0
  572. data/vendor/android/google-play-services_lib/res/values-sl/wallet_strings.xml +7 -0
  573. data/vendor/android/google-play-services_lib/res/values-sq-rAL/base_strings.xml +32 -0
  574. data/vendor/android/google-play-services_lib/res/values-sq-rAL/common_strings.xml +5 -0
  575. data/vendor/android/google-play-services_lib/res/values-sq-rAL/location_strings.xml +8 -0
  576. data/vendor/android/google-play-services_lib/res/values-sr/base_strings.xml +32 -0
  577. data/vendor/android/google-play-services_lib/res/values-sr/common_strings.xml +5 -0
  578. data/vendor/android/google-play-services_lib/res/values-sr/location_strings.xml +8 -0
  579. data/vendor/android/google-play-services_lib/res/values-sr/wallet_strings.xml +7 -0
  580. data/vendor/android/google-play-services_lib/res/values-sv/base_strings.xml +32 -0
  581. data/vendor/android/google-play-services_lib/res/values-sv/common_strings.xml +5 -0
  582. data/vendor/android/google-play-services_lib/res/values-sv/location_strings.xml +8 -0
  583. data/vendor/android/google-play-services_lib/res/values-sv/wallet_strings.xml +7 -0
  584. data/vendor/android/google-play-services_lib/res/values-sw/base_strings.xml +32 -0
  585. data/vendor/android/google-play-services_lib/res/values-sw/common_strings.xml +5 -0
  586. data/vendor/android/google-play-services_lib/res/values-sw/location_strings.xml +8 -0
  587. data/vendor/android/google-play-services_lib/res/values-sw/wallet_strings.xml +7 -0
  588. data/vendor/android/google-play-services_lib/res/values-ta-rIN/base_strings.xml +32 -0
  589. data/vendor/android/google-play-services_lib/res/values-ta-rIN/common_strings.xml +5 -0
  590. data/vendor/android/google-play-services_lib/res/values-ta-rIN/location_strings.xml +8 -0
  591. data/vendor/android/google-play-services_lib/res/values-te-rIN/base_strings.xml +32 -0
  592. data/vendor/android/google-play-services_lib/res/values-te-rIN/common_strings.xml +5 -0
  593. data/vendor/android/google-play-services_lib/res/values-te-rIN/location_strings.xml +8 -0
  594. data/vendor/android/google-play-services_lib/res/values-th/base_strings.xml +32 -0
  595. data/vendor/android/google-play-services_lib/res/values-th/common_strings.xml +5 -0
  596. data/vendor/android/google-play-services_lib/res/values-th/location_strings.xml +8 -0
  597. data/vendor/android/google-play-services_lib/res/values-th/wallet_strings.xml +7 -0
  598. data/vendor/android/google-play-services_lib/res/values-tl/base_strings.xml +32 -0
  599. data/vendor/android/google-play-services_lib/res/values-tl/common_strings.xml +5 -0
  600. data/vendor/android/google-play-services_lib/res/values-tl/location_strings.xml +8 -0
  601. data/vendor/android/google-play-services_lib/res/values-tl/wallet_strings.xml +7 -0
  602. data/vendor/android/google-play-services_lib/res/values-tr/base_strings.xml +32 -0
  603. data/vendor/android/google-play-services_lib/res/values-tr/common_strings.xml +5 -0
  604. data/vendor/android/google-play-services_lib/res/values-tr/location_strings.xml +8 -0
  605. data/vendor/android/google-play-services_lib/res/values-tr/wallet_strings.xml +7 -0
  606. data/vendor/android/google-play-services_lib/res/values-uk/base_strings.xml +32 -0
  607. data/vendor/android/google-play-services_lib/res/values-uk/common_strings.xml +5 -0
  608. data/vendor/android/google-play-services_lib/res/values-uk/location_strings.xml +8 -0
  609. data/vendor/android/google-play-services_lib/res/values-uk/wallet_strings.xml +7 -0
  610. data/vendor/android/google-play-services_lib/res/values-ur-rPK/base_strings.xml +32 -0
  611. data/vendor/android/google-play-services_lib/res/values-ur-rPK/common_strings.xml +5 -0
  612. data/vendor/android/google-play-services_lib/res/values-ur-rPK/location_strings.xml +8 -0
  613. data/vendor/android/google-play-services_lib/res/values-uz-rUZ/base_strings.xml +32 -0
  614. data/vendor/android/google-play-services_lib/res/values-uz-rUZ/common_strings.xml +5 -0
  615. data/vendor/android/google-play-services_lib/res/values-uz-rUZ/location_strings.xml +8 -0
  616. data/vendor/android/google-play-services_lib/res/values-v11/appinvite_styles.xml +7 -0
  617. data/vendor/android/google-play-services_lib/res/values-v21/appinvite_styles.xml +7 -0
  618. data/vendor/android/google-play-services_lib/res/values-vi/base_strings.xml +32 -0
  619. data/vendor/android/google-play-services_lib/res/values-vi/common_strings.xml +5 -0
  620. data/vendor/android/google-play-services_lib/res/values-vi/location_strings.xml +8 -0
  621. data/vendor/android/google-play-services_lib/res/values-vi/wallet_strings.xml +7 -0
  622. data/vendor/android/google-play-services_lib/res/values-zh-rCN/base_strings.xml +32 -0
  623. data/vendor/android/google-play-services_lib/res/values-zh-rCN/common_strings.xml +5 -0
  624. data/vendor/android/google-play-services_lib/res/values-zh-rCN/location_strings.xml +8 -0
  625. data/vendor/android/google-play-services_lib/res/values-zh-rCN/wallet_strings.xml +7 -0
  626. data/vendor/android/google-play-services_lib/res/values-zh-rHK/base_strings.xml +32 -0
  627. data/vendor/android/google-play-services_lib/res/values-zh-rHK/common_strings.xml +5 -0
  628. data/vendor/android/google-play-services_lib/res/values-zh-rHK/location_strings.xml +8 -0
  629. data/vendor/android/google-play-services_lib/res/values-zh-rHK/wallet_strings.xml +7 -0
  630. data/vendor/android/google-play-services_lib/res/values-zh-rTW/base_strings.xml +32 -0
  631. data/vendor/android/google-play-services_lib/res/values-zh-rTW/common_strings.xml +5 -0
  632. data/vendor/android/google-play-services_lib/res/values-zh-rTW/location_strings.xml +8 -0
  633. data/vendor/android/google-play-services_lib/res/values-zh-rTW/wallet_strings.xml +7 -0
  634. data/vendor/android/google-play-services_lib/res/values-zu/base_strings.xml +32 -0
  635. data/vendor/android/google-play-services_lib/res/values-zu/common_strings.xml +5 -0
  636. data/vendor/android/google-play-services_lib/res/values-zu/location_strings.xml +8 -0
  637. data/vendor/android/google-play-services_lib/res/values/admob_ads_attrs.xml +22 -0
  638. data/vendor/android/google-play-services_lib/res/values/admob_iap_style.xml +11 -0
  639. data/vendor/android/google-play-services_lib/res/values/admob_strings.xml +9 -0
  640. data/vendor/android/google-play-services_lib/res/values/appinvite_styles.xml +14 -0
  641. data/vendor/android/google-play-services_lib/res/values/auth_strings.xml +7 -0
  642. data/vendor/android/google-play-services_lib/res/values/base_attrs.xml +24 -0
  643. data/vendor/android/google-play-services_lib/res/values/base_colors.xml +23 -0
  644. data/vendor/android/google-play-services_lib/res/values/base_strings.xml +99 -0
  645. data/vendor/android/google-play-services_lib/res/values/cast_ids.xml +6 -0
  646. data/vendor/android/google-play-services_lib/res/values/cast_strings.xml +13 -0
  647. data/vendor/android/google-play-services_lib/res/values/common_attrs.xml +31 -0
  648. data/vendor/android/google-play-services_lib/res/values/common_strings.xml +6 -0
  649. data/vendor/android/google-play-services_lib/res/values/location_colors.xml +11 -0
  650. data/vendor/android/google-play-services_lib/res/values/location_dimens.xml +15 -0
  651. data/vendor/android/google-play-services_lib/res/values/location_strings.xml +12 -0
  652. data/vendor/android/google-play-services_lib/res/values/maps_attrs.xml +35 -0
  653. data/vendor/android/google-play-services_lib/res/values/version.xml +4 -0
  654. data/vendor/android/google-play-services_lib/res/values/wallet_attrs.xml +100 -0
  655. data/vendor/android/google-play-services_lib/res/values/wallet_colors.xml +21 -0
  656. data/vendor/android/google-play-services_lib/res/values/wallet_strings.xml +11 -0
  657. data/vendor/android/google-play-services_lib/res/values/wallet_styles.xml +45 -0
  658. data/vendor/android/google-play-services_lib/src/android/UnusedStub.java +21 -0
  659. data/vendor/android/support/v7/appcompat/AndroidManifest.xml +20 -0
  660. data/vendor/android/support/v7/appcompat/README.txt +10 -0
  661. data/vendor/android/support/v7/appcompat/libs/android-support-v4.jar +0 -0
  662. data/vendor/android/support/v7/appcompat/libs/android-support-v7-appcompat.jar +0 -0
  663. data/vendor/android/support/v7/appcompat/project.properties +15 -0
  664. data/vendor/android/support/v7/appcompat/res/anim/abc_fade_in.xml +20 -0
  665. data/vendor/android/support/v7/appcompat/res/anim/abc_fade_out.xml +20 -0
  666. data/vendor/android/support/v7/appcompat/res/anim/abc_grow_fade_in_from_bottom.xml +30 -0
  667. data/vendor/android/support/v7/appcompat/res/anim/abc_popup_enter.xml +21 -0
  668. data/vendor/android/support/v7/appcompat/res/anim/abc_popup_exit.xml +21 -0
  669. data/vendor/android/support/v7/appcompat/res/anim/abc_shrink_fade_out_from_bottom.xml +27 -0
  670. data/vendor/android/support/v7/appcompat/res/anim/abc_slide_in_bottom.xml +19 -0
  671. data/vendor/android/support/v7/appcompat/res/anim/abc_slide_in_top.xml +19 -0
  672. data/vendor/android/support/v7/appcompat/res/anim/abc_slide_out_bottom.xml +19 -0
  673. data/vendor/android/support/v7/appcompat/res/anim/abc_slide_out_top.xml +19 -0
  674. data/vendor/android/support/v7/appcompat/res/color-v11/abc_background_cache_hint_selector_material_dark.xml +20 -0
  675. data/vendor/android/support/v7/appcompat/res/color-v11/abc_background_cache_hint_selector_material_light.xml +20 -0
  676. data/vendor/android/support/v7/appcompat/res/color-v23/abc_color_highlight_material.xml +23 -0
  677. data/vendor/android/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_dark.xml +19 -0
  678. data/vendor/android/support/v7/appcompat/res/color/abc_background_cache_hint_selector_material_light.xml +19 -0
  679. data/vendor/android/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_dark.xml +20 -0
  680. data/vendor/android/support/v7/appcompat/res/color/abc_primary_text_disable_only_material_light.xml +20 -0
  681. data/vendor/android/support/v7/appcompat/res/color/abc_primary_text_material_dark.xml +20 -0
  682. data/vendor/android/support/v7/appcompat/res/color/abc_primary_text_material_light.xml +20 -0
  683. data/vendor/android/support/v7/appcompat/res/color/abc_search_url_text.xml +21 -0
  684. data/vendor/android/support/v7/appcompat/res/color/abc_secondary_text_material_dark.xml +20 -0
  685. data/vendor/android/support/v7/appcompat/res/color/abc_secondary_text_material_light.xml +20 -0
  686. data/vendor/android/support/v7/appcompat/res/color/switch_thumb_material_dark.xml +20 -0
  687. data/vendor/android/support/v7/appcompat/res/color/switch_thumb_material_light.xml +20 -0
  688. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ab_share_pack_mtrl_alpha.9.png +0 -0
  689. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_000.png +0 -0
  690. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_check_to_on_mtrl_015.png +0 -0
  691. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_000.png +0 -0
  692. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_radio_to_on_mtrl_015.png +0 -0
  693. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_rating_star_off_mtrl_alpha.png +0 -0
  694. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_rating_star_on_mtrl_alpha.png +0 -0
  695. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00001.9.png +0 -0
  696. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_btn_switch_to_on_mtrl_00012.9.png +0 -0
  697. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_cab_background_top_mtrl_alpha.9.png +0 -0
  698. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  699. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_clear_mtrl_alpha.png +0 -0
  700. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_commit_search_api_mtrl_alpha.png +0 -0
  701. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_go_search_api_mtrl_alpha.png +0 -0
  702. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  703. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  704. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png +0 -0
  705. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_paste_mtrl_am_alpha.png +0 -0
  706. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_selectall_mtrl_alpha.png +0 -0
  707. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_menu_share_mtrl_alpha.png +0 -0
  708. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_search_api_mtrl_alpha.png +0 -0
  709. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_ic_voice_search_api_mtrl_alpha.png +0 -0
  710. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_divider_mtrl_alpha.9.png +0 -0
  711. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_focused_holo.9.png +0 -0
  712. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_longpressed_holo.9.png +0 -0
  713. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_pressed_holo_dark.9.png +0 -0
  714. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_pressed_holo_light.9.png +0 -0
  715. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_dark.9.png +0 -0
  716. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_list_selector_disabled_holo_light.9.png +0 -0
  717. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_menu_hardkey_panel_mtrl_mult.9.png +0 -0
  718. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_popup_background_mtrl_mult.9.png +0 -0
  719. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_scrubber_control_off_mtrl_alpha.png +0 -0
  720. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_000.png +0 -0
  721. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_scrubber_control_to_pressed_mtrl_005.png +0 -0
  722. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_scrubber_primary_mtrl_alpha.9.png +0 -0
  723. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_scrubber_track_mtrl_alpha.9.png +0 -0
  724. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  725. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_switch_track_mtrl_alpha.9.png +0 -0
  726. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_tab_indicator_mtrl_alpha.9.png +0 -0
  727. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_textfield_activated_mtrl_alpha.9.png +0 -0
  728. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_textfield_default_mtrl_alpha.9.png +0 -0
  729. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_textfield_search_activated_mtrl_alpha.9.png +0 -0
  730. data/vendor/android/support/v7/appcompat/res/drawable-hdpi/abc_textfield_search_default_mtrl_alpha.9.png +0 -0
  731. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-hdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  732. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  733. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-hdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  734. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-hdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  735. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-mdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  736. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  737. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-mdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  738. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-mdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  739. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  740. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  741. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  742. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  743. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  744. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  745. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  746. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  747. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  748. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  749. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  750. data/vendor/android/support/v7/appcompat/res/drawable-ldrtl-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  751. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ab_share_pack_mtrl_alpha.9.png +0 -0
  752. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_000.png +0 -0
  753. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_check_to_on_mtrl_015.png +0 -0
  754. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_000.png +0 -0
  755. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_radio_to_on_mtrl_015.png +0 -0
  756. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_rating_star_off_mtrl_alpha.png +0 -0
  757. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_rating_star_on_mtrl_alpha.png +0 -0
  758. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00001.9.png +0 -0
  759. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_btn_switch_to_on_mtrl_00012.9.png +0 -0
  760. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_cab_background_top_mtrl_alpha.9.png +0 -0
  761. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  762. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_clear_mtrl_alpha.png +0 -0
  763. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_commit_search_api_mtrl_alpha.png +0 -0
  764. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_go_search_api_mtrl_alpha.png +0 -0
  765. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  766. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  767. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png +0 -0
  768. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_paste_mtrl_am_alpha.png +0 -0
  769. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_selectall_mtrl_alpha.png +0 -0
  770. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_menu_share_mtrl_alpha.png +0 -0
  771. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_search_api_mtrl_alpha.png +0 -0
  772. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_ic_voice_search_api_mtrl_alpha.png +0 -0
  773. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_divider_mtrl_alpha.9.png +0 -0
  774. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_focused_holo.9.png +0 -0
  775. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_longpressed_holo.9.png +0 -0
  776. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_pressed_holo_dark.9.png +0 -0
  777. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_pressed_holo_light.9.png +0 -0
  778. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_dark.9.png +0 -0
  779. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_list_selector_disabled_holo_light.9.png +0 -0
  780. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_menu_hardkey_panel_mtrl_mult.9.png +0 -0
  781. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_popup_background_mtrl_mult.9.png +0 -0
  782. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_scrubber_control_off_mtrl_alpha.png +0 -0
  783. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_000.png +0 -0
  784. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_scrubber_control_to_pressed_mtrl_005.png +0 -0
  785. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_scrubber_primary_mtrl_alpha.9.png +0 -0
  786. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_scrubber_track_mtrl_alpha.9.png +0 -0
  787. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  788. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_switch_track_mtrl_alpha.9.png +0 -0
  789. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_tab_indicator_mtrl_alpha.9.png +0 -0
  790. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_textfield_activated_mtrl_alpha.9.png +0 -0
  791. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_textfield_default_mtrl_alpha.9.png +0 -0
  792. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_textfield_search_activated_mtrl_alpha.9.png +0 -0
  793. data/vendor/android/support/v7/appcompat/res/drawable-mdpi/abc_textfield_search_default_mtrl_alpha.9.png +0 -0
  794. data/vendor/android/support/v7/appcompat/res/drawable-v21/abc_action_bar_item_background_material.xml +18 -0
  795. data/vendor/android/support/v7/appcompat/res/drawable-v21/abc_btn_colored_material.xml +50 -0
  796. data/vendor/android/support/v7/appcompat/res/drawable-v23/abc_control_background_material.xml +19 -0
  797. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ab_share_pack_mtrl_alpha.9.png +0 -0
  798. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_000.png +0 -0
  799. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_check_to_on_mtrl_015.png +0 -0
  800. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_000.png +0 -0
  801. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_radio_to_on_mtrl_015.png +0 -0
  802. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_rating_star_off_mtrl_alpha.png +0 -0
  803. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_rating_star_on_mtrl_alpha.png +0 -0
  804. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00001.9.png +0 -0
  805. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_btn_switch_to_on_mtrl_00012.9.png +0 -0
  806. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_cab_background_top_mtrl_alpha.9.png +0 -0
  807. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  808. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_clear_mtrl_alpha.png +0 -0
  809. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_commit_search_api_mtrl_alpha.png +0 -0
  810. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_go_search_api_mtrl_alpha.png +0 -0
  811. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  812. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  813. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png +0 -0
  814. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_paste_mtrl_am_alpha.png +0 -0
  815. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_selectall_mtrl_alpha.png +0 -0
  816. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_menu_share_mtrl_alpha.png +0 -0
  817. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_search_api_mtrl_alpha.png +0 -0
  818. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_ic_voice_search_api_mtrl_alpha.png +0 -0
  819. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_divider_mtrl_alpha.9.png +0 -0
  820. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_focused_holo.9.png +0 -0
  821. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_longpressed_holo.9.png +0 -0
  822. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_dark.9.png +0 -0
  823. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_pressed_holo_light.9.png +0 -0
  824. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_dark.9.png +0 -0
  825. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_list_selector_disabled_holo_light.9.png +0 -0
  826. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png +0 -0
  827. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_popup_background_mtrl_mult.9.png +0 -0
  828. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_scrubber_control_off_mtrl_alpha.png +0 -0
  829. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_000.png +0 -0
  830. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_scrubber_control_to_pressed_mtrl_005.png +0 -0
  831. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_scrubber_primary_mtrl_alpha.9.png +0 -0
  832. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_scrubber_track_mtrl_alpha.9.png +0 -0
  833. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  834. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_switch_track_mtrl_alpha.9.png +0 -0
  835. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_tab_indicator_mtrl_alpha.9.png +0 -0
  836. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_textfield_activated_mtrl_alpha.9.png +0 -0
  837. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_textfield_default_mtrl_alpha.9.png +0 -0
  838. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_textfield_search_activated_mtrl_alpha.9.png +0 -0
  839. data/vendor/android/support/v7/appcompat/res/drawable-xhdpi/abc_textfield_search_default_mtrl_alpha.9.png +0 -0
  840. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ab_share_pack_mtrl_alpha.9.png +0 -0
  841. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_000.png +0 -0
  842. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_check_to_on_mtrl_015.png +0 -0
  843. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_000.png +0 -0
  844. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_radio_to_on_mtrl_015.png +0 -0
  845. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_off_mtrl_alpha.png +0 -0
  846. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_rating_star_on_mtrl_alpha.png +0 -0
  847. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png +0 -0
  848. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png +0 -0
  849. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_cab_background_top_mtrl_alpha.9.png +0 -0
  850. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  851. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_clear_mtrl_alpha.png +0 -0
  852. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_commit_search_api_mtrl_alpha.png +0 -0
  853. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_go_search_api_mtrl_alpha.png +0 -0
  854. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  855. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  856. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png +0 -0
  857. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png +0 -0
  858. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_selectall_mtrl_alpha.png +0 -0
  859. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_menu_share_mtrl_alpha.png +0 -0
  860. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_search_api_mtrl_alpha.png +0 -0
  861. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_ic_voice_search_api_mtrl_alpha.png +0 -0
  862. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_divider_mtrl_alpha.9.png +0 -0
  863. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_focused_holo.9.png +0 -0
  864. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_longpressed_holo.9.png +0 -0
  865. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_dark.9.png +0 -0
  866. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_pressed_holo_light.9.png +0 -0
  867. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_dark.9.png +0 -0
  868. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_list_selector_disabled_holo_light.9.png +0 -0
  869. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_menu_hardkey_panel_mtrl_mult.9.png +0 -0
  870. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_popup_background_mtrl_mult.9.png +0 -0
  871. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_scrubber_control_off_mtrl_alpha.png +0 -0
  872. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png +0 -0
  873. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png +0 -0
  874. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_scrubber_primary_mtrl_alpha.9.png +0 -0
  875. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_scrubber_track_mtrl_alpha.9.png +0 -0
  876. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  877. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_switch_track_mtrl_alpha.9.png +0 -0
  878. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_tab_indicator_mtrl_alpha.9.png +0 -0
  879. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_textfield_activated_mtrl_alpha.9.png +0 -0
  880. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_textfield_default_mtrl_alpha.9.png +0 -0
  881. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_textfield_search_activated_mtrl_alpha.9.png +0 -0
  882. data/vendor/android/support/v7/appcompat/res/drawable-xxhdpi/abc_textfield_search_default_mtrl_alpha.9.png +0 -0
  883. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_000.png +0 -0
  884. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_check_to_on_mtrl_015.png +0 -0
  885. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_000.png +0 -0
  886. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_radio_to_on_mtrl_015.png +0 -0
  887. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00001.9.png +0 -0
  888. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_btn_switch_to_on_mtrl_00012.9.png +0 -0
  889. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_ab_back_mtrl_am_alpha.png +0 -0
  890. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_clear_mtrl_alpha.png +0 -0
  891. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_copy_mtrl_am_alpha.png +0 -0
  892. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_cut_mtrl_alpha.png +0 -0
  893. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_moreoverflow_mtrl_alpha.png +0 -0
  894. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_paste_mtrl_am_alpha.png +0 -0
  895. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_selectall_mtrl_alpha.png +0 -0
  896. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_menu_share_mtrl_alpha.png +0 -0
  897. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_search_api_mtrl_alpha.png +0 -0
  898. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_ic_voice_search_api_mtrl_alpha.png +0 -0
  899. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_000.png +0 -0
  900. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_scrubber_control_to_pressed_mtrl_005.png +0 -0
  901. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_spinner_mtrl_am_alpha.9.png +0 -0
  902. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_switch_track_mtrl_alpha.9.png +0 -0
  903. data/vendor/android/support/v7/appcompat/res/drawable-xxxhdpi/abc_tab_indicator_mtrl_alpha.9.png +0 -0
  904. data/vendor/android/support/v7/appcompat/res/drawable/abc_btn_borderless_material.xml +22 -0
  905. data/vendor/android/support/v7/appcompat/res/drawable/abc_btn_check_material.xml +20 -0
  906. data/vendor/android/support/v7/appcompat/res/drawable/abc_btn_colored_material.xml +21 -0
  907. data/vendor/android/support/v7/appcompat/res/drawable/abc_btn_default_mtrl_shape.xml +32 -0
  908. data/vendor/android/support/v7/appcompat/res/drawable/abc_btn_radio_material.xml +20 -0
  909. data/vendor/android/support/v7/appcompat/res/drawable/abc_cab_background_internal_bg.xml +23 -0
  910. data/vendor/android/support/v7/appcompat/res/drawable/abc_cab_background_top_material.xml +20 -0
  911. data/vendor/android/support/v7/appcompat/res/drawable/abc_dialog_material_background_dark.xml +26 -0
  912. data/vendor/android/support/v7/appcompat/res/drawable/abc_dialog_material_background_light.xml +26 -0
  913. data/vendor/android/support/v7/appcompat/res/drawable/abc_edit_text_material.xml +29 -0
  914. data/vendor/android/support/v7/appcompat/res/drawable/abc_item_background_holo_dark.xml +26 -0
  915. data/vendor/android/support/v7/appcompat/res/drawable/abc_item_background_holo_light.xml +26 -0
  916. data/vendor/android/support/v7/appcompat/res/drawable/abc_list_selector_background_transition_holo_dark.xml +20 -0
  917. data/vendor/android/support/v7/appcompat/res/drawable/abc_list_selector_background_transition_holo_light.xml +20 -0
  918. data/vendor/android/support/v7/appcompat/res/drawable/abc_list_selector_holo_dark.xml +27 -0
  919. data/vendor/android/support/v7/appcompat/res/drawable/abc_list_selector_holo_light.xml +28 -0
  920. data/vendor/android/support/v7/appcompat/res/drawable/abc_ratingbar_full_material.xml +24 -0
  921. data/vendor/android/support/v7/appcompat/res/drawable/abc_seekbar_thumb_material.xml +35 -0
  922. data/vendor/android/support/v7/appcompat/res/drawable/abc_seekbar_track_material.xml +40 -0
  923. data/vendor/android/support/v7/appcompat/res/drawable/abc_spinner_textfield_background_material.xml +36 -0
  924. data/vendor/android/support/v7/appcompat/res/drawable/abc_switch_thumb_material.xml +20 -0
  925. data/vendor/android/support/v7/appcompat/res/drawable/abc_tab_indicator_material.xml +20 -0
  926. data/vendor/android/support/v7/appcompat/res/drawable/abc_text_cursor_material.xml +23 -0
  927. data/vendor/android/support/v7/appcompat/res/drawable/abc_textfield_search_material.xml +22 -0
  928. data/vendor/android/support/v7/appcompat/res/layout/abc_action_bar_title_item.xml +34 -0
  929. data/vendor/android/support/v7/appcompat/res/layout/abc_action_bar_up_container.xml +23 -0
  930. data/vendor/android/support/v7/appcompat/res/layout/abc_action_bar_view_list_nav_layout.xml +23 -0
  931. data/vendor/android/support/v7/appcompat/res/layout/abc_action_menu_item_layout.xml +30 -0
  932. data/vendor/android/support/v7/appcompat/res/layout/abc_action_menu_layout.xml +24 -0
  933. data/vendor/android/support/v7/appcompat/res/layout/abc_action_mode_bar.xml +25 -0
  934. data/vendor/android/support/v7/appcompat/res/layout/abc_action_mode_close_item_material.xml +26 -0
  935. data/vendor/android/support/v7/appcompat/res/layout/abc_activity_chooser_view.xml +71 -0
  936. data/vendor/android/support/v7/appcompat/res/layout/abc_activity_chooser_view_list_item.xml +52 -0
  937. data/vendor/android/support/v7/appcompat/res/layout/abc_alert_dialog_button_bar_material.xml +59 -0
  938. data/vendor/android/support/v7/appcompat/res/layout/abc_alert_dialog_material.xml +127 -0
  939. data/vendor/android/support/v7/appcompat/res/layout/abc_dialog_title_material.xml +47 -0
  940. data/vendor/android/support/v7/appcompat/res/layout/abc_expanded_menu_layout.xml +21 -0
  941. data/vendor/android/support/v7/appcompat/res/layout/abc_list_menu_item_checkbox.xml +26 -0
  942. data/vendor/android/support/v7/appcompat/res/layout/abc_list_menu_item_icon.xml +28 -0
  943. data/vendor/android/support/v7/appcompat/res/layout/abc_list_menu_item_layout.xml +60 -0
  944. data/vendor/android/support/v7/appcompat/res/layout/abc_list_menu_item_radio.xml +24 -0
  945. data/vendor/android/support/v7/appcompat/res/layout/abc_popup_menu_item_layout.xml +61 -0
  946. data/vendor/android/support/v7/appcompat/res/layout/abc_screen_content_include.xml +26 -0
  947. data/vendor/android/support/v7/appcompat/res/layout/abc_screen_simple.xml +34 -0
  948. data/vendor/android/support/v7/appcompat/res/layout/abc_screen_simple_overlay_action_mode.xml +39 -0
  949. data/vendor/android/support/v7/appcompat/res/layout/abc_screen_toolbar.xml +53 -0
  950. data/vendor/android/support/v7/appcompat/res/layout/abc_search_dropdown_item_icons_2line.xml +85 -0
  951. data/vendor/android/support/v7/appcompat/res/layout/abc_search_view.xml +141 -0
  952. data/vendor/android/support/v7/appcompat/res/layout/abc_select_dialog_material.xml +35 -0
  953. data/vendor/android/support/v7/appcompat/res/layout/notification_media_action.xml +25 -0
  954. data/vendor/android/support/v7/appcompat/res/layout/notification_media_cancel_action.xml +28 -0
  955. data/vendor/android/support/v7/appcompat/res/layout/notification_template_big_media.xml +60 -0
  956. data/vendor/android/support/v7/appcompat/res/layout/notification_template_big_media_narrow.xml +68 -0
  957. data/vendor/android/support/v7/appcompat/res/layout/notification_template_lines.xml +108 -0
  958. data/vendor/android/support/v7/appcompat/res/layout/notification_template_media.xml +52 -0
  959. data/vendor/android/support/v7/appcompat/res/layout/notification_template_part_chronometer.xml +28 -0
  960. data/vendor/android/support/v7/appcompat/res/layout/notification_template_part_time.xml +28 -0
  961. data/vendor/android/support/v7/appcompat/res/layout/select_dialog_item_material.xml +33 -0
  962. data/vendor/android/support/v7/appcompat/res/layout/select_dialog_multichoice_material.xml +33 -0
  963. data/vendor/android/support/v7/appcompat/res/layout/select_dialog_singlechoice_material.xml +33 -0
  964. data/vendor/android/support/v7/appcompat/res/layout/support_simple_spinner_dropdown_item.xml +25 -0
  965. data/vendor/android/support/v7/appcompat/res/values-af/strings.xml +39 -0
  966. data/vendor/android/support/v7/appcompat/res/values-am/strings.xml +39 -0
  967. data/vendor/android/support/v7/appcompat/res/values-ar/strings.xml +39 -0
  968. data/vendor/android/support/v7/appcompat/res/values-az-rAZ/strings.xml +41 -0
  969. data/vendor/android/support/v7/appcompat/res/values-bg/strings.xml +39 -0
  970. data/vendor/android/support/v7/appcompat/res/values-bn-rBD/strings.xml +39 -0
  971. data/vendor/android/support/v7/appcompat/res/values-ca/strings.xml +39 -0
  972. data/vendor/android/support/v7/appcompat/res/values-cs/strings.xml +39 -0
  973. data/vendor/android/support/v7/appcompat/res/values-da/strings.xml +39 -0
  974. data/vendor/android/support/v7/appcompat/res/values-de/strings.xml +39 -0
  975. data/vendor/android/support/v7/appcompat/res/values-el/strings.xml +39 -0
  976. data/vendor/android/support/v7/appcompat/res/values-en-rAU/strings.xml +39 -0
  977. data/vendor/android/support/v7/appcompat/res/values-en-rGB/strings.xml +39 -0
  978. data/vendor/android/support/v7/appcompat/res/values-en-rIN/strings.xml +39 -0
  979. data/vendor/android/support/v7/appcompat/res/values-es-rUS/strings.xml +39 -0
  980. data/vendor/android/support/v7/appcompat/res/values-es/strings.xml +39 -0
  981. data/vendor/android/support/v7/appcompat/res/values-et-rEE/strings.xml +39 -0
  982. data/vendor/android/support/v7/appcompat/res/values-eu-rES/strings.xml +39 -0
  983. data/vendor/android/support/v7/appcompat/res/values-fa/strings.xml +39 -0
  984. data/vendor/android/support/v7/appcompat/res/values-fi/strings.xml +39 -0
  985. data/vendor/android/support/v7/appcompat/res/values-fr-rCA/strings.xml +39 -0
  986. data/vendor/android/support/v7/appcompat/res/values-fr/strings.xml +39 -0
  987. data/vendor/android/support/v7/appcompat/res/values-gl-rES/strings.xml +39 -0
  988. data/vendor/android/support/v7/appcompat/res/values-gu-rIN/strings.xml +39 -0
  989. data/vendor/android/support/v7/appcompat/res/values-h320dp/bools.xml +19 -0
  990. data/vendor/android/support/v7/appcompat/res/values-h720dp/dimens.xml +20 -0
  991. data/vendor/android/support/v7/appcompat/res/values-hdpi/styles_base.xml +23 -0
  992. data/vendor/android/support/v7/appcompat/res/values-hi/strings.xml +39 -0
  993. data/vendor/android/support/v7/appcompat/res/values-hr/strings.xml +39 -0
  994. data/vendor/android/support/v7/appcompat/res/values-hu/strings.xml +39 -0
  995. data/vendor/android/support/v7/appcompat/res/values-hy-rAM/strings.xml +39 -0
  996. data/vendor/android/support/v7/appcompat/res/values-in/strings.xml +39 -0
  997. data/vendor/android/support/v7/appcompat/res/values-is-rIS/strings.xml +39 -0
  998. data/vendor/android/support/v7/appcompat/res/values-it/strings.xml +39 -0
  999. data/vendor/android/support/v7/appcompat/res/values-iw/strings.xml +39 -0
  1000. data/vendor/android/support/v7/appcompat/res/values-ja/strings.xml +39 -0
  1001. data/vendor/android/support/v7/appcompat/res/values-ka-rGE/strings.xml +39 -0
  1002. data/vendor/android/support/v7/appcompat/res/values-kk-rKZ/strings.xml +39 -0
  1003. data/vendor/android/support/v7/appcompat/res/values-km-rKH/strings.xml +39 -0
  1004. data/vendor/android/support/v7/appcompat/res/values-kn-rIN/strings.xml +39 -0
  1005. data/vendor/android/support/v7/appcompat/res/values-ko/strings.xml +39 -0
  1006. data/vendor/android/support/v7/appcompat/res/values-ky-rKG/strings.xml +39 -0
  1007. data/vendor/android/support/v7/appcompat/res/values-land/bools.xml +19 -0
  1008. data/vendor/android/support/v7/appcompat/res/values-land/config.xml +18 -0
  1009. data/vendor/android/support/v7/appcompat/res/values-land/dimens.xml +21 -0
  1010. data/vendor/android/support/v7/appcompat/res/values-land/dimens_material.xml +25 -0
  1011. data/vendor/android/support/v7/appcompat/res/values-large/bools.xml +19 -0
  1012. data/vendor/android/support/v7/appcompat/res/values-large/config.xml +30 -0
  1013. data/vendor/android/support/v7/appcompat/res/values-large/dimens.xml +33 -0
  1014. data/vendor/android/support/v7/appcompat/res/values-large/themes_base.xml +25 -0
  1015. data/vendor/android/support/v7/appcompat/res/values-ldltr-v21/styles_base.xml +28 -0
  1016. data/vendor/android/support/v7/appcompat/res/values-ldrtl-v23/styles_base.xml +22 -0
  1017. data/vendor/android/support/v7/appcompat/res/values-lo-rLA/strings.xml +39 -0
  1018. data/vendor/android/support/v7/appcompat/res/values-lt/strings.xml +39 -0
  1019. data/vendor/android/support/v7/appcompat/res/values-lv/strings.xml +39 -0
  1020. data/vendor/android/support/v7/appcompat/res/values-mk-rMK/strings.xml +43 -0
  1021. data/vendor/android/support/v7/appcompat/res/values-ml-rIN/strings.xml +39 -0
  1022. data/vendor/android/support/v7/appcompat/res/values-mn-rMN/strings.xml +39 -0
  1023. data/vendor/android/support/v7/appcompat/res/values-mr-rIN/strings.xml +39 -0
  1024. data/vendor/android/support/v7/appcompat/res/values-ms-rMY/strings.xml +39 -0
  1025. data/vendor/android/support/v7/appcompat/res/values-my-rMM/strings.xml +39 -0
  1026. data/vendor/android/support/v7/appcompat/res/values-nb/strings.xml +39 -0
  1027. data/vendor/android/support/v7/appcompat/res/values-ne-rNP/strings.xml +39 -0
  1028. data/vendor/android/support/v7/appcompat/res/values-nl/strings.xml +39 -0
  1029. data/vendor/android/support/v7/appcompat/res/values-pa-rIN/strings.xml +39 -0
  1030. data/vendor/android/support/v7/appcompat/res/values-pl/strings.xml +39 -0
  1031. data/vendor/android/support/v7/appcompat/res/values-port/bools.xml +21 -0
  1032. data/vendor/android/support/v7/appcompat/res/values-pt-rBR/strings.xml +39 -0
  1033. data/vendor/android/support/v7/appcompat/res/values-pt-rPT/strings.xml +39 -0
  1034. data/vendor/android/support/v7/appcompat/res/values-pt/strings.xml +39 -0
  1035. data/vendor/android/support/v7/appcompat/res/values-ro/strings.xml +39 -0
  1036. data/vendor/android/support/v7/appcompat/res/values-ru/strings.xml +39 -0
  1037. data/vendor/android/support/v7/appcompat/res/values-si-rLK/strings.xml +39 -0
  1038. data/vendor/android/support/v7/appcompat/res/values-sk/strings.xml +39 -0
  1039. data/vendor/android/support/v7/appcompat/res/values-sl/strings.xml +39 -0
  1040. data/vendor/android/support/v7/appcompat/res/values-sq-rAL/strings.xml +39 -0
  1041. data/vendor/android/support/v7/appcompat/res/values-sr/strings.xml +39 -0
  1042. data/vendor/android/support/v7/appcompat/res/values-sv/strings.xml +39 -0
  1043. data/vendor/android/support/v7/appcompat/res/values-sw/strings.xml +39 -0
  1044. data/vendor/android/support/v7/appcompat/res/values-sw600dp/config.xml +25 -0
  1045. data/vendor/android/support/v7/appcompat/res/values-sw600dp/dimens.xml +37 -0
  1046. data/vendor/android/support/v7/appcompat/res/values-ta-rIN/strings.xml +39 -0
  1047. data/vendor/android/support/v7/appcompat/res/values-te-rIN/strings.xml +39 -0
  1048. data/vendor/android/support/v7/appcompat/res/values-th/strings.xml +39 -0
  1049. data/vendor/android/support/v7/appcompat/res/values-tl/strings.xml +39 -0
  1050. data/vendor/android/support/v7/appcompat/res/values-tr/strings.xml +39 -0
  1051. data/vendor/android/support/v7/appcompat/res/values-uk/strings.xml +39 -0
  1052. data/vendor/android/support/v7/appcompat/res/values-ur-rPK/strings.xml +39 -0
  1053. data/vendor/android/support/v7/appcompat/res/values-uz-rUZ/strings.xml +41 -0
  1054. data/vendor/android/support/v7/appcompat/res/values-v11/styles_base.xml +36 -0
  1055. data/vendor/android/support/v7/appcompat/res/values-v11/styles_base_text.xml +64 -0
  1056. data/vendor/android/support/v7/appcompat/res/values-v11/themes_base.xml +149 -0
  1057. data/vendor/android/support/v7/appcompat/res/values-v12/styles_base.xml +31 -0
  1058. data/vendor/android/support/v7/appcompat/res/values-v14/styles.xml +33 -0
  1059. data/vendor/android/support/v7/appcompat/res/values-v14/styles_base_text.xml +26 -0
  1060. data/vendor/android/support/v7/appcompat/res/values-v14/themes_base.xml +36 -0
  1061. data/vendor/android/support/v7/appcompat/res/values-v17/styles_rtl.xml +81 -0
  1062. data/vendor/android/support/v7/appcompat/res/values-v18/dimens.xml +22 -0
  1063. data/vendor/android/support/v7/appcompat/res/values-v21/styles_base.xml +211 -0
  1064. data/vendor/android/support/v7/appcompat/res/values-v21/styles_base_text.xml +66 -0
  1065. data/vendor/android/support/v7/appcompat/res/values-v21/themes_base.xml +161 -0
  1066. data/vendor/android/support/v7/appcompat/res/values-v22/themes_base.xml +31 -0
  1067. data/vendor/android/support/v7/appcompat/res/values-v23/styles_base.xml +22 -0
  1068. data/vendor/android/support/v7/appcompat/res/values-v23/styles_base_text.xml +21 -0
  1069. data/vendor/android/support/v7/appcompat/res/values-v23/themes_base.xml +43 -0
  1070. data/vendor/android/support/v7/appcompat/res/values-vi/strings.xml +39 -0
  1071. data/vendor/android/support/v7/appcompat/res/values-w360dp/dimens.xml +22 -0
  1072. data/vendor/android/support/v7/appcompat/res/values-w480dp/bools.xml +18 -0
  1073. data/vendor/android/support/v7/appcompat/res/values-w480dp/config.xml +18 -0
  1074. data/vendor/android/support/v7/appcompat/res/values-w500dp/dimens.xml +22 -0
  1075. data/vendor/android/support/v7/appcompat/res/values-w600dp/dimens.xml +25 -0
  1076. data/vendor/android/support/v7/appcompat/res/values-w720dp/bools.xml +19 -0
  1077. data/vendor/android/support/v7/appcompat/res/values-xlarge-land/dimens.xml +22 -0
  1078. data/vendor/android/support/v7/appcompat/res/values-xlarge/bools.xml +19 -0
  1079. data/vendor/android/support/v7/appcompat/res/values-xlarge/dimens.xml +35 -0
  1080. data/vendor/android/support/v7/appcompat/res/values-zh-rCN/strings.xml +39 -0
  1081. data/vendor/android/support/v7/appcompat/res/values-zh-rHK/strings.xml +39 -0
  1082. data/vendor/android/support/v7/appcompat/res/values-zh-rTW/strings.xml +39 -0
  1083. data/vendor/android/support/v7/appcompat/res/values-zu/strings.xml +39 -0
  1084. data/vendor/android/support/v7/appcompat/res/values/attrs.xml +962 -0
  1085. data/vendor/android/support/v7/appcompat/res/values/bools.xml +28 -0
  1086. data/vendor/android/support/v7/appcompat/res/values/colors.xml +24 -0
  1087. data/vendor/android/support/v7/appcompat/res/values/colors_material.xml +117 -0
  1088. data/vendor/android/support/v7/appcompat/res/values/config.xml +48 -0
  1089. data/vendor/android/support/v7/appcompat/res/values/dimens.xml +111 -0
  1090. data/vendor/android/support/v7/appcompat/res/values/dimens_material.xml +74 -0
  1091. data/vendor/android/support/v7/appcompat/res/values/ids.xml +26 -0
  1092. data/vendor/android/support/v7/appcompat/res/values/strings.xml +76 -0
  1093. data/vendor/android/support/v7/appcompat/res/values/styles.xml +336 -0
  1094. data/vendor/android/support/v7/appcompat/res/values/styles_base.xml +498 -0
  1095. data/vendor/android/support/v7/appcompat/res/values/styles_base_text.xml +142 -0
  1096. data/vendor/android/support/v7/appcompat/res/values/styles_rtl.xml +79 -0
  1097. data/vendor/android/support/v7/appcompat/res/values/themes.xml +95 -0
  1098. data/vendor/android/support/v7/appcompat/res/values/themes_base.xml +626 -0
  1099. metadata +1144 -0
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2014 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="wallet_buy_button_place_holder" msgid="4184147110658930238">"Beli dengan Google"</string>
7
+ </resources>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_notification_ticker" msgid="3936796119014022295">"Villa í þjónustu Google Play"</string>
5
+ <string name="common_google_play_services_install_title" msgid="2110712637922504348">"Sækja þjónustu Google Play"</string>
6
+ <string name="common_google_play_services_install_text_phone" msgid="1545874412485515659">"<xliff:g id="APP_NAME">%1$s</xliff:g> getur ekki keyrt án þjónustu Google Play, sem vantar í símann þinn."</string>
7
+ <string name="common_google_play_services_install_text_tablet" msgid="2742131317258851812">"<xliff:g id="APP_NAME">%1$s</xliff:g> getur ekki keyrt án þjónustu Google Play, sem vantar í spjaldtölvuna þína."</string>
8
+ <string name="common_google_play_services_install_button" msgid="5765996826213593005">"Sækja þjónustu Google Play"</string>
9
+ <string name="common_google_play_services_enable_title" msgid="4763733806837472840">"Virkja þjónustu Google Play"</string>
10
+ <string name="common_google_play_services_enable_text" msgid="2016066508617425489">"<xliff:g id="APP_NAME">%1$s</xliff:g> virkar ekki nema þú gerir þjónustu Google Play virka."</string>
11
+ <string name="common_google_play_services_enable_button" msgid="7334167077229901382">"Virkja þjónustu Google Play"</string>
12
+ <string name="common_google_play_services_update_title" msgid="2926201203597631481">"Uppfæra þjónustu Google Play"</string>
13
+ <string name="common_google_play_services_update_text" msgid="6230553430311881723">"<xliff:g id="APP_NAME">%1$s</xliff:g> getur ekki keyrt nema þú uppfærir þjónustu Google Play."</string>
14
+ <string name="common_google_play_services_wear_update_text" msgid="8334920661858223093">"Nýja útgáfu af þjónustu Google Play vantar. Hún uppfærir sig sjálf innan skamms."</string>
15
+ <string name="common_google_play_services_updating_title" msgid="1604540693139938838">"Verið er að uppfæra þjónustu Google Play"</string>
16
+ <string name="common_google_play_services_updating_text" msgid="1576144479907495032">"<xliff:g id="APP_NAME">%1$s</xliff:g> getur ekki keyrt án þjónustu Google Play, sem verið er að uppfæra."</string>
17
+ <string name="common_google_play_services_network_error_title" msgid="5183831421651758225">"Netvilla"</string>
18
+ <string name="common_google_play_services_network_error_text" msgid="2602915190038884860">"Gagnatengingar er krafist til að tengjast þjónustu Google Play."</string>
19
+ <string name="common_google_play_services_invalid_account_title" msgid="9894539456463288">"Ógildur reikningur"</string>
20
+ <string name="common_google_play_services_invalid_account_text" msgid="8004809446015217370">"Tilgreindur reikningur er ekki til staðar í þessu tæki. Veldu annan reikning."</string>
21
+ <string name="common_google_play_services_unsupported_title" msgid="909734065366822541">"Þjónusta Google Play"</string>
22
+ <string name="common_google_play_services_unsupported_text" msgid="4291190028362992831">"<xliff:g id="APP_NAME">%1$s</xliff:g> reiðir sig á þjónustu Google Play, sem er ekki studd í tækinu þínu. Hafðu samband við framleiðandann til að fá aðstoð."</string>
23
+ <string name="common_google_play_services_update_button" msgid="2221302284291941971">"Uppfæra"</string>
24
+ <string name="common_open_on_phone" msgid="311697239335516384">"Opna í símanum"</string>
25
+ <string name="common_google_play_services_api_unavailable_text" msgid="2785372108150982144">"<xliff:g id="APP_NAME">%1$s</xliff:g> krefst einhverrar Google Play þjónustu sem ekki er tiltæk sem stendur. Hafðu samband við þróunaraðilann til að fá aðstoð."</string>
26
+ <string name="common_google_play_services_sign_in_failed_title" msgid="8431204498860131150">"Innskráning mistókst"</string>
27
+ <string name="common_google_play_services_sign_in_failed_text" msgid="59739986196915578">"Villa við að skrá tilgreindan reikning inn. Veldu annan reikning."</string>
28
+ <string name="common_google_play_services_restricted_profile_title" msgid="4958149393843193760">"Takmarkað snið"</string>
29
+ <string name="common_google_play_services_restricted_profile_text" msgid="6951442375899151085">"Ekki er stuðningur við aðgang að reikningum af takmörkuðu sniði."</string>
30
+ <string name="common_signin_button_text" msgid="3156914698180786012">"Skrá inn"</string>
31
+ <string name="common_signin_button_text_long" msgid="1483290677806110088">"Skrá inn með Google"</string>
32
+ </resources>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_unknown_issue" msgid="7170719956698345984">"<xliff:g id="APP_NAME">%1$s</xliff:g> á í vandræðum með þjónustu Google Play. Ef vandamálið heldur áfram skaltu hafa samband við þróunaraðilann til að fá aðstoð."</string>
5
+ </resources>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2015 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="place_autocomplete_search_hint" msgid="4600782048316473865">"Leita"</string>
7
+ <string name="place_autocomplete_clear_button" msgid="2132213647576279742">"Hreinsa leit"</string>
8
+ </resources>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_notification_ticker" msgid="3936796119014022295">"Errore Google Play Services"</string>
5
+ <string name="common_google_play_services_install_title" msgid="2110712637922504348">"Installa Google Play Services"</string>
6
+ <string name="common_google_play_services_install_text_phone" msgid="1545874412485515659">"<xliff:g id="APP_NAME">%1$s</xliff:g> non funzionerà senza Google Play Services, non presente sul tuo telefono."</string>
7
+ <string name="common_google_play_services_install_text_tablet" msgid="2742131317258851812">"<xliff:g id="APP_NAME">%1$s</xliff:g> non funzionerà senza Google Play Services, non presente sul tuo tablet."</string>
8
+ <string name="common_google_play_services_install_button" msgid="5765996826213593005">"Installa Google Play Services"</string>
9
+ <string name="common_google_play_services_enable_title" msgid="4763733806837472840">"Attiva Google Play Services"</string>
10
+ <string name="common_google_play_services_enable_text" msgid="2016066508617425489">"<xliff:g id="APP_NAME">%1$s</xliff:g> non funzionerà se non attivi Google Play Services."</string>
11
+ <string name="common_google_play_services_enable_button" msgid="7334167077229901382">"Attiva Google Play Services"</string>
12
+ <string name="common_google_play_services_update_title" msgid="2926201203597631481">"Aggiorna Google Play Services"</string>
13
+ <string name="common_google_play_services_update_text" msgid="6230553430311881723">"<xliff:g id="APP_NAME">%1$s</xliff:g> non funzionerà se non aggiorni Google Play Services."</string>
14
+ <string name="common_google_play_services_wear_update_text" msgid="8334920661858223093">"È richiesta una nuova versione di Google Play Services. L\'aggiornamento automatico verrà eseguito a breve."</string>
15
+ <string name="common_google_play_services_updating_title" msgid="1604540693139938838">"Aggiornamento di Google Play Services"</string>
16
+ <string name="common_google_play_services_updating_text" msgid="1576144479907495032">"<xliff:g id="APP_NAME">%1$s</xliff:g> non funzionerà senza Google Play Services, attualmente in fase di aggiornamento."</string>
17
+ <string name="common_google_play_services_network_error_title" msgid="5183831421651758225">"Errore di rete"</string>
18
+ <string name="common_google_play_services_network_error_text" msgid="2602915190038884860">"È necessaria una connessione dati per connettersi a Google Play Services."</string>
19
+ <string name="common_google_play_services_invalid_account_title" msgid="9894539456463288">"Account non valido"</string>
20
+ <string name="common_google_play_services_invalid_account_text" msgid="8004809446015217370">"L\'account specificato non esiste su questo dispositivo. Scegli un altro account."</string>
21
+ <string name="common_google_play_services_unsupported_title" msgid="909734065366822541">"Google Play Services"</string>
22
+ <string name="common_google_play_services_unsupported_text" msgid="4291190028362992831">"<xliff:g id="APP_NAME">%1$s</xliff:g> si basa su Google Play Services, che non è supportato sul tuo dispositivo. Contatta il produttore per ricevere assistenza."</string>
23
+ <string name="common_google_play_services_update_button" msgid="2221302284291941971">"Aggiorna"</string>
24
+ <string name="common_open_on_phone" msgid="311697239335516384">"Apri sul telefono"</string>
25
+ <string name="common_google_play_services_api_unavailable_text" msgid="2785372108150982144">"<xliff:g id="APP_NAME">%1$s</xliff:g> richiede uno o più servizi di Google Play che non sono attualmente disponibili. Contatta lo sviluppatore per ricevere assistenza."</string>
26
+ <string name="common_google_play_services_sign_in_failed_title" msgid="8431204498860131150">"Accesso non riuscito"</string>
27
+ <string name="common_google_play_services_sign_in_failed_text" msgid="59739986196915578">"Errore durante l\'accesso all\'account specificato. Scegli un altro account."</string>
28
+ <string name="common_google_play_services_restricted_profile_title" msgid="4958149393843193760">"Profilo con limitazioni"</string>
29
+ <string name="common_google_play_services_restricted_profile_text" msgid="6951442375899151085">"L\'accesso agli account da un profilo con limitazioni non è supportato."</string>
30
+ <string name="common_signin_button_text" msgid="3156914698180786012">"Accedi"</string>
31
+ <string name="common_signin_button_text_long" msgid="1483290677806110088">"Accedi con Google"</string>
32
+ </resources>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_unknown_issue" msgid="7170719956698345984">"<xliff:g id="APP_NAME">%1$s</xliff:g> sta riscontrando problemi con Google Play Services. Se il problema persiste, contatta lo sviluppatore per ricevere assistenza."</string>
5
+ </resources>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2015 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="place_autocomplete_search_hint" msgid="4600782048316473865">"Cerca"</string>
7
+ <string name="place_autocomplete_clear_button" msgid="2132213647576279742">"Cancella ricerca"</string>
8
+ </resources>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2014 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="wallet_buy_button_place_holder" msgid="4184147110658930238">"Acquista con Google"</string>
7
+ </resources>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_notification_ticker" msgid="3936796119014022295">"‏שגיאה בשירותי Google Play"</string>
5
+ <string name="common_google_play_services_install_title" msgid="2110712637922504348">"‏קבל את שירותי Google Play"</string>
6
+ <string name="common_google_play_services_install_text_phone" msgid="1545874412485515659">"‏האפליקציה <xliff:g id="APP_NAME">%1$s</xliff:g> לא תפעל ללא שירותי Google Play, שאינם מותקנים בטלפון שלך."</string>
7
+ <string name="common_google_play_services_install_text_tablet" msgid="2742131317258851812">"‏האפליקציה <xliff:g id="APP_NAME">%1$s</xliff:g> לא תפעל ללא שירותי Google Play, שאינם מותקנים בטאבלט שלך."</string>
8
+ <string name="common_google_play_services_install_button" msgid="5765996826213593005">"‏קבל את שירותי Google Play"</string>
9
+ <string name="common_google_play_services_enable_title" msgid="4763733806837472840">"‏הפעל את שירותי Google Play"</string>
10
+ <string name="common_google_play_services_enable_text" msgid="2016066508617425489">"‏האפליקציה <xliff:g id="APP_NAME">%1$s</xliff:g> לא תפעל אם לא תפעיל את שירותי Google Play."</string>
11
+ <string name="common_google_play_services_enable_button" msgid="7334167077229901382">"‏הפעל את שירותי Google Play"</string>
12
+ <string name="common_google_play_services_update_title" msgid="2926201203597631481">"‏עדכון שירותי Google Play"</string>
13
+ <string name="common_google_play_services_update_text" msgid="6230553430311881723">"‏האפליקציה <xliff:g id="APP_NAME">%1$s</xliff:g> לא תפעל אם לא תעדכן את שירותי Google Play."</string>
14
+ <string name="common_google_play_services_wear_update_text" msgid="8334920661858223093">"‏דרושה גרסה חדשה של שירותי Google Play. הגרסה תתעדכן בעצמה תוך זמן קצר."</string>
15
+ <string name="common_google_play_services_updating_title" msgid="1604540693139938838">"‏שירותי Google Play מתעדכנים"</string>
16
+ <string name="common_google_play_services_updating_text" msgid="1576144479907495032">"‏האפליקציה <xliff:g id="APP_NAME">%1$s</xliff:g> לא תפעל ללא שירותי Google Play, שמתעדכנים כרגע."</string>
17
+ <string name="common_google_play_services_network_error_title" msgid="5183831421651758225">"שגיאת רשת"</string>
18
+ <string name="common_google_play_services_network_error_text" msgid="2602915190038884860">"‏דרוש חיבור נתונים כדי להתחבר לשירותי Google Play."</string>
19
+ <string name="common_google_play_services_invalid_account_title" msgid="9894539456463288">"חשבון לא חוקי"</string>
20
+ <string name="common_google_play_services_invalid_account_text" msgid="8004809446015217370">"החשבון שצוין לא קיים במכשיר זה. בחר חשבון אחר."</string>
21
+ <string name="common_google_play_services_unsupported_title" msgid="909734065366822541">"‏שירותי Google Play"</string>
22
+ <string name="common_google_play_services_unsupported_text" msgid="4291190028362992831">"‏האפליקציה <xliff:g id="APP_NAME">%1$s</xliff:g> תלויה בשירותי Google Play, שאינם נתמכים במכשיר שלך. צור קשר עם היצרן לקבלת סיוע."</string>
23
+ <string name="common_google_play_services_update_button" msgid="2221302284291941971">"עדכן"</string>
24
+ <string name="common_open_on_phone" msgid="311697239335516384">"פתח בטלפון"</string>
25
+ <string name="common_google_play_services_api_unavailable_text" msgid="2785372108150982144">"‏ל-<xliff:g id="APP_NAME">%1$s</xliff:g> נדרש שירות אחד או מספר שירותים של Google Play, שאינם זמינים כעת. צור קשר עם המפתח לקבלת סיוע."</string>
26
+ <string name="common_google_play_services_sign_in_failed_title" msgid="8431204498860131150">"הכניסה נכשלה"</string>
27
+ <string name="common_google_play_services_sign_in_failed_text" msgid="59739986196915578">"אירעה שגיאה בעת הכניסה אל החשבון שצוין. בחר חשבון אחר."</string>
28
+ <string name="common_google_play_services_restricted_profile_title" msgid="4958149393843193760">"פרופיל מוגבל"</string>
29
+ <string name="common_google_play_services_restricted_profile_text" msgid="6951442375899151085">"הגישה לחשבונות מפרופיל מוגבל אינה נתמכת."</string>
30
+ <string name="common_signin_button_text" msgid="3156914698180786012">"היכנס"</string>
31
+ <string name="common_signin_button_text_long" msgid="1483290677806110088">"‏היכנס באמצעות Google"</string>
32
+ </resources>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_unknown_issue" msgid="7170719956698345984">"‏<xliff:g id="APP_NAME">%1$s</xliff:g> נתקלה בבעיה עם שירותי Google Play. אם הבעיה נמשכת, צור קשר עם המפתחים לקבלת סיוע."</string>
5
+ </resources>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2015 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="place_autocomplete_search_hint" msgid="4600782048316473865">"חיפוש"</string>
7
+ <string name="place_autocomplete_clear_button" msgid="2132213647576279742">"נקה את החיפוש"</string>
8
+ </resources>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2014 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="wallet_buy_button_place_holder" msgid="4184147110658930238">"קנה בעזרת Google"</string>
7
+ </resources>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_notification_ticker" msgid="3936796119014022295">"Google Play開発者サービスのエラー"</string>
5
+ <string name="common_google_play_services_install_title" msgid="2110712637922504348">"Google Play開発者サービスの入手"</string>
6
+ <string name="common_google_play_services_install_text_phone" msgid="1545874412485515659">"<xliff:g id="APP_NAME">%1$s</xliff:g>の実行にはGoogle Play開発者サービスが必要ですが、お使いのスマートフォンにはインストールされていません。"</string>
7
+ <string name="common_google_play_services_install_text_tablet" msgid="2742131317258851812">"<xliff:g id="APP_NAME">%1$s</xliff:g>の実行にはGoogle Play開発者サービスが必要ですが、お使いのタブレットにはインストールされていません。"</string>
8
+ <string name="common_google_play_services_install_button" msgid="5765996826213593005">"Google Play開発者サービスを入手"</string>
9
+ <string name="common_google_play_services_enable_title" msgid="4763733806837472840">"Google Play開発者サービスの有効化"</string>
10
+ <string name="common_google_play_services_enable_text" msgid="2016066508617425489">"<xliff:g id="APP_NAME">%1$s</xliff:g>の実行には、Google Play開発者サービスの有効化が必要です。"</string>
11
+ <string name="common_google_play_services_enable_button" msgid="7334167077229901382">"Google Play開発者サービスを有効化"</string>
12
+ <string name="common_google_play_services_update_title" msgid="2926201203597631481">"Google Play開発者サービスの更新"</string>
13
+ <string name="common_google_play_services_update_text" msgid="6230553430311881723">"<xliff:g id="APP_NAME">%1$s</xliff:g>の実行にはGoogle Play開発者サービスの更新が必要です。"</string>
14
+ <string name="common_google_play_services_wear_update_text" msgid="8334920661858223093">"Google Play開発者サービスの新しいバージョンが必要です。まもなく自動更新されます。"</string>
15
+ <string name="common_google_play_services_updating_title" msgid="1604540693139938838">"Google Play開発者サービスの更新中"</string>
16
+ <string name="common_google_play_services_updating_text" msgid="1576144479907495032">"<xliff:g id="APP_NAME">%1$s</xliff:g>の実行にはGoogle Play開発者サービスが必要ですが、このサービスは現在更新中です。"</string>
17
+ <string name="common_google_play_services_network_error_title" msgid="5183831421651758225">"ネットワークエラー"</string>
18
+ <string name="common_google_play_services_network_error_text" msgid="2602915190038884860">"Google Play開発者サービスに接続するには、データ接続が必要です。"</string>
19
+ <string name="common_google_play_services_invalid_account_title" msgid="9894539456463288">"無効なアカウント"</string>
20
+ <string name="common_google_play_services_invalid_account_text" msgid="8004809446015217370">"指定したアカウントはこの端末上に存在しません。別のアカウントを選択してください。"</string>
21
+ <string name="common_google_play_services_unsupported_title" msgid="909734065366822541">"Google Play開発者サービス"</string>
22
+ <string name="common_google_play_services_unsupported_text" msgid="4291190028362992831">"<xliff:g id="APP_NAME">%1$s</xliff:g>に必要なGoogle Play開発者サービスは、お使いの端末ではサポートされていません。詳しくは端末メーカーにお問い合わせください。"</string>
23
+ <string name="common_google_play_services_update_button" msgid="2221302284291941971">"更新"</string>
24
+ <string name="common_open_on_phone" msgid="311697239335516384">"スマートフォンで開く"</string>
25
+ <string name="common_google_play_services_api_unavailable_text" msgid="2785372108150982144">"<xliff:g id="APP_NAME">%1$s</xliff:g>には現在利用されていないGoogle Play開発者サービスが必要です。詳しくはデベロッパーにお問い合わせください。"</string>
26
+ <string name="common_google_play_services_sign_in_failed_title" msgid="8431204498860131150">"ログインできませんでした"</string>
27
+ <string name="common_google_play_services_sign_in_failed_text" msgid="59739986196915578">"指定されたアカウントへのログイン中にエラーが発生しました。別のアカウントを選択してください。"</string>
28
+ <string name="common_google_play_services_restricted_profile_title" msgid="4958149393843193760">"制限付きプロフィール"</string>
29
+ <string name="common_google_play_services_restricted_profile_text" msgid="6951442375899151085">"制限付きプロフィールからのアカウントへのアクセスはサポートされていません。"</string>
30
+ <string name="common_signin_button_text" msgid="3156914698180786012">"ログイン"</string>
31
+ <string name="common_signin_button_text_long" msgid="1483290677806110088">"Googleにログイン"</string>
32
+ </resources>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_unknown_issue" msgid="7170719956698345984">"「<xliff:g id="APP_NAME">%1$s</xliff:g>」でGoogle Play開発者サービスに問題が発生しています。問題が解決しない場合は、デベロッパーにお問い合わせください。"</string>
5
+ </resources>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2015 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="place_autocomplete_search_hint" msgid="4600782048316473865">"検索"</string>
7
+ <string name="place_autocomplete_clear_button" msgid="2132213647576279742">"検索をクリア"</string>
8
+ </resources>
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2014 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="wallet_buy_button_place_holder" msgid="4184147110658930238">"Googleで購入"</string>
7
+ </resources>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_notification_ticker" msgid="3936796119014022295">"Google Play Services-ის შეცდომა"</string>
5
+ <string name="common_google_play_services_install_title" msgid="2110712637922504348">"Google Play Services-ის ჩამოტვირთვა"</string>
6
+ <string name="common_google_play_services_install_text_phone" msgid="1545874412485515659">"<xliff:g id="APP_NAME">%1$s</xliff:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომელიც აკლია თქვენს ტელეფონს."</string>
7
+ <string name="common_google_play_services_install_text_tablet" msgid="2742131317258851812">"<xliff:g id="APP_NAME">%1$s</xliff:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომელიც აკლია თქვენს ტაბლეტს."</string>
8
+ <string name="common_google_play_services_install_button" msgid="5765996826213593005">"Google Play Services-ის ჩამოტვირთვა"</string>
9
+ <string name="common_google_play_services_enable_title" msgid="4763733806837472840">"Google Play Services-ის ჩართვა"</string>
10
+ <string name="common_google_play_services_enable_text" msgid="2016066508617425489">"<xliff:g id="APP_NAME">%1$s</xliff:g> ვერ იმუშავებს Google Play Services-ის ჩართვამდე."</string>
11
+ <string name="common_google_play_services_enable_button" msgid="7334167077229901382">"Google Play Services-ის ჩართვა"</string>
12
+ <string name="common_google_play_services_update_title" msgid="2926201203597631481">"განაახლეთ Google Play Services"</string>
13
+ <string name="common_google_play_services_update_text" msgid="6230553430311881723">"<xliff:g id="APP_NAME">%1$s</xliff:g> ვერ გაეშვება, თუ Google Play Services-ს არ განაახლებთ."</string>
14
+ <string name="common_google_play_services_wear_update_text" msgid="8334920661858223093">"საჭიროა Google Play Services-ის ახალი ვერსია. ის მალე განახლდება."</string>
15
+ <string name="common_google_play_services_updating_title" msgid="1604540693139938838">"Google Play Services-ის განახლება…"</string>
16
+ <string name="common_google_play_services_updating_text" msgid="1576144479907495032">"<xliff:g id="APP_NAME">%1$s</xliff:g> ვერ გაეშვება Google Play Services-ის გარეშე, რომელთა განახლებაც ამჟამად მიმდინარეობს."</string>
17
+ <string name="common_google_play_services_network_error_title" msgid="5183831421651758225">"ქსელის შეცდომა"</string>
18
+ <string name="common_google_play_services_network_error_text" msgid="2602915190038884860">"Google Play Services-თან დასაკავშირებლად საჭიროა მონაცემთა კავშირი."</string>
19
+ <string name="common_google_play_services_invalid_account_title" msgid="9894539456463288">"ანგარიში არასწორია"</string>
20
+ <string name="common_google_play_services_invalid_account_text" msgid="8004809446015217370">"მითითებული ანგარიში ამ მოწყობილობაზე არ არსებობს. გთხოვთ, აირჩიოთ სხვა ანგარიში."</string>
21
+ <string name="common_google_play_services_unsupported_title" msgid="909734065366822541">"Google Play Services"</string>
22
+ <string name="common_google_play_services_unsupported_text" msgid="4291190028362992831">"<xliff:g id="APP_NAME">%1$s</xliff:g> დამოკიდებულია Google Play Services-ზე, რომელიც თქვენი მოწყობილობის მიერ არ არის მხარდაჭერილი. გთხოვთ, დახმარებისთვის დაუკავშირდეთ მწარმოებელს."</string>
23
+ <string name="common_google_play_services_update_button" msgid="2221302284291941971">"განახლება"</string>
24
+ <string name="common_open_on_phone" msgid="311697239335516384">"ტელეფონში გახსნა"</string>
25
+ <string name="common_google_play_services_api_unavailable_text" msgid="2785372108150982144">"<xliff:g id="APP_NAME">%1$s</xliff:g> საჭიროებს Google Play Services-ის ერთ ან მეტ ფუნქციას, რომელიც ამჟამად მიუწვდომელია. გთხოვთ, დახმარებისთვის დაუკავშირდეთ დეველოპერს."</string>
26
+ <string name="common_google_play_services_sign_in_failed_title" msgid="8431204498860131150">"შესვლა ვერ მოხერხდა"</string>
27
+ <string name="common_google_play_services_sign_in_failed_text" msgid="59739986196915578">"შეცდომა მითითებულ ანგარიშზე შესვლისას. გთხოვთ, აირჩიოთ სხვა ანგარიში."</string>
28
+ <string name="common_google_play_services_restricted_profile_title" msgid="4958149393843193760">"შეზღუდული პროფილი"</string>
29
+ <string name="common_google_play_services_restricted_profile_text" msgid="6951442375899151085">"შეზღუდული პროფილიდან ანგარიშებზე წვდომა არ არის მხარდაჭერილი."</string>
30
+ <string name="common_signin_button_text" msgid="3156914698180786012">"შესვლა"</string>
31
+ <string name="common_signin_button_text_long" msgid="1483290677806110088">"Google-ით შესვლა"</string>
32
+ </resources>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_unknown_issue" msgid="7170719956698345984">"<xliff:g id="APP_NAME">%1$s</xliff:g>-ს Google Play სერვისებთან პრობლემა შეექმნა. თუ პრობლემა გამეორდება, გთხოვთ, დახმარებისთვის დეველოპერს დაუკავშირდეთ."</string>
5
+ </resources>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2015 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="place_autocomplete_search_hint" msgid="4600782048316473865">"ძიება"</string>
7
+ <string name="place_autocomplete_clear_button" msgid="2132213647576279742">"ძიების გასუფთავება"</string>
8
+ </resources>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_notification_ticker" msgid="3936796119014022295">"Google Play қызметтерінің қатесі"</string>
5
+ <string name="common_google_play_services_install_title" msgid="2110712637922504348">"Google Play қызметтерін алу"</string>
6
+ <string name="common_google_play_services_install_text_phone" msgid="1545874412485515659">"Google Play қызметтері телефонда болмағандықтан, <xliff:g id="APP_NAME">%1$s</xliff:g> іске қосылмайды."</string>
7
+ <string name="common_google_play_services_install_text_tablet" msgid="2742131317258851812">"Google Play қызметтері планшетте болмағандықтан, <xliff:g id="APP_NAME">%1$s</xliff:g> іске қосылмайды."</string>
8
+ <string name="common_google_play_services_install_button" msgid="5765996826213593005">"Google Play қызметтерін алу"</string>
9
+ <string name="common_google_play_services_enable_title" msgid="4763733806837472840">"Google Play қызметтерін қосу"</string>
10
+ <string name="common_google_play_services_enable_text" msgid="2016066508617425489">"Google Play қызметтерін қоспасаңыз, <xliff:g id="APP_NAME">%1$s</xliff:g> жұмыс істемейді."</string>
11
+ <string name="common_google_play_services_enable_button" msgid="7334167077229901382">"Google Play қызметтерін қосу"</string>
12
+ <string name="common_google_play_services_update_title" msgid="2926201203597631481">"Google Play қызметтерін жаңарту"</string>
13
+ <string name="common_google_play_services_update_text" msgid="6230553430311881723">"Google Play қызметтерін жаңартпасаңыз, <xliff:g id="APP_NAME">%1$s</xliff:g> іске қосылмайды."</string>
14
+ <string name="common_google_play_services_wear_update_text" msgid="8334920661858223093">"Google Play қызметтерінің жаңа нұсқасы қажет. Ол қысқа уақыттан кейін өзі жаңарады."</string>
15
+ <string name="common_google_play_services_updating_title" msgid="1604540693139938838">"Google Play қызметтері жаңартылуда"</string>
16
+ <string name="common_google_play_services_updating_text" msgid="1576144479907495032">"Қазіргі уақытта жаңартылып жатқан Google Play қызметтерінсіз <xliff:g id="APP_NAME">%1$s</xliff:g> іске қосылмайды."</string>
17
+ <string name="common_google_play_services_network_error_title" msgid="5183831421651758225">"Желі қатесі"</string>
18
+ <string name="common_google_play_services_network_error_text" msgid="2602915190038884860">"Google Play қызметтеріне қосылу үшін, деректер байланысы қажет."</string>
19
+ <string name="common_google_play_services_invalid_account_title" msgid="9894539456463288">"Жарамсыз есептік жазба"</string>
20
+ <string name="common_google_play_services_invalid_account_text" msgid="8004809446015217370">"Бұл құрылғыда көрсетілген есептік жазба жоқ. Басқа есептік жазбаны таңдаңыз."</string>
21
+ <string name="common_google_play_services_unsupported_title" msgid="909734065366822541">"Google Play қызметтері"</string>
22
+ <string name="common_google_play_services_unsupported_text" msgid="4291190028362992831">"<xliff:g id="APP_NAME">%1$s</xliff:g> құрылғыңыз қолдау көрсетпейтін Google Play қызметтеріне негізделген. Көмек алу үшін өндірушіге хабарласыңыз."</string>
23
+ <string name="common_google_play_services_update_button" msgid="2221302284291941971">"Жаңарту"</string>
24
+ <string name="common_open_on_phone" msgid="311697239335516384">"Телефонда ашу"</string>
25
+ <string name="common_google_play_services_api_unavailable_text" msgid="2785372108150982144">"<xliff:g id="APP_NAME">%1$s</xliff:g> үшін қазіргі уақытта қолжетімді емес бір немесе бірнеше Google Play қызметі қажет. Көмек алу үшін әзірлеушіге хабарласыңыз."</string>
26
+ <string name="common_google_play_services_sign_in_failed_title" msgid="8431204498860131150">"Кіру сәтсіз аяқталды"</string>
27
+ <string name="common_google_play_services_sign_in_failed_text" msgid="59739986196915578">"Көрсетілген есептік жазбаға кіру кезіндегі қате. Басқа есептік жазбаны таңдаңыз."</string>
28
+ <string name="common_google_play_services_restricted_profile_title" msgid="4958149393843193760">"Шектелген профиль"</string>
29
+ <string name="common_google_play_services_restricted_profile_text" msgid="6951442375899151085">"Шектелген профильден есептік жазбаларға кіру мүмкін емес."</string>
30
+ <string name="common_signin_button_text" msgid="3156914698180786012">"Кіру"</string>
31
+ <string name="common_signin_button_text_long" msgid="1483290677806110088">"Google арқылы кіру"</string>
32
+ </resources>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_unknown_issue" msgid="7170719956698345984">"<xliff:g id="APP_NAME">%1$s</xliff:g> қолданбасында Google Play қызметтерімен мәселе бар. Мәселе жалғасса, көмек алу үшін әзірлеушіге хабарласыңыз."</string>
5
+ </resources>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2015 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="place_autocomplete_search_hint" msgid="4600782048316473865">"Іздеу"</string>
7
+ <string name="place_autocomplete_clear_button" msgid="2132213647576279742">"Іздеуді тазалау"</string>
8
+ </resources>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_notification_ticker" msgid="3936796119014022295">"កំហុសសេវាកម្ម Google Play"</string>
5
+ <string name="common_google_play_services_install_title" msgid="2110712637922504348">"ទាញយកសេវាកម្ម Google Play"</string>
6
+ <string name="common_google_play_services_install_text_phone" msgid="1545874412485515659">"<xliff:g id="APP_NAME">%1$s</xliff:g> នឹងមិនដំណើរការទេ បើទូរស័ព្ទរបស់អ្នកមិនមានសេវាកម្ម Google Play។"</string>
7
+ <string name="common_google_play_services_install_text_tablet" msgid="2742131317258851812">"<xliff:g id="APP_NAME">%1$s</xliff:g> នឹងមិនដំណើរការទេ បើថេប្លេតរបស់អ្នកមិនមានសេវាកម្ម Google Play។"</string>
8
+ <string name="common_google_play_services_install_button" msgid="5765996826213593005">"ទាញយកសេវាកម្ម Google Play"</string>
9
+ <string name="common_google_play_services_enable_title" msgid="4763733806837472840">"បើកសេវាកម្ម Google Play"</string>
10
+ <string name="common_google_play_services_enable_text" msgid="2016066508617425489">"<xliff:g id="APP_NAME">%1$s</xliff:g> នឹងមិនដំណើរការទេ លុះត្រាតែអ្នកបើកសេវាកម្ម Google Play។"</string>
11
+ <string name="common_google_play_services_enable_button" msgid="7334167077229901382">"បើកសេវាកម្ម Google Play"</string>
12
+ <string name="common_google_play_services_update_title" msgid="2926201203597631481">"អាប់ដេតសេវាកម្ម Google Play"</string>
13
+ <string name="common_google_play_services_update_text" msgid="6230553430311881723">"<xliff:g id="APP_NAME">%1$s</xliff:g> នឹងមិនដំណើរការទេ លុះត្រាតែអ្នកអាប់ដេតសេវាកម្ម Google Play។"</string>
14
+ <string name="common_google_play_services_wear_update_text" msgid="8334920661858223093">"តម្រូវឲ្យមានកំណែថ្មីនៃសេវាកម្ម Google Play។ វានឹងអាប់ដេតដោយខ្លួនវានៅពេលបន្តិចទៀតនេះ។"</string>
15
+ <string name="common_google_play_services_updating_title" msgid="1604540693139938838">"សេវាកម្ម Google Play កំពុងអាប់ដេត"</string>
16
+ <string name="common_google_play_services_updating_text" msgid="1576144479907495032">"<xliff:g id="APP_NAME">%1$s</xliff:g> នឹងមិនដំណើរការទេ បើមិនមានសេវាកម្ម Google Play ដោយសារតែវាកំពុងអាប់ដេត។"</string>
17
+ <string name="common_google_play_services_network_error_title" msgid="5183831421651758225">"កំហុស​បណ្ដាញ"</string>
18
+ <string name="common_google_play_services_network_error_text" msgid="2602915190038884860">"តម្រូវឲ្យមានការភ្ជាប់ទិន្នន័យ ដើម្បីភ្ជាប់សេវាកម្ម Google Play"</string>
19
+ <string name="common_google_play_services_invalid_account_title" msgid="9894539456463288">"គណនីមិនត្រឹមត្រូវ"</string>
20
+ <string name="common_google_play_services_invalid_account_text" msgid="8004809446015217370">"គណនី​ដែល​បាន​បញ្ជាក់​មិន​មាន​នៅ​លើ​ឧបករណ៍​នេះ​ទេ។ សូម​ជ្រើស​គណនី​ផ្សេង​។"</string>
21
+ <string name="common_google_play_services_unsupported_title" msgid="909734065366822541">"សេវាកម្ម Google Play"</string>
22
+ <string name="common_google_play_services_unsupported_text" msgid="4291190028362992831">"<xliff:g id="APP_NAME">%1$s</xliff:g> ពឹងផ្អែកលើសេវាកម្ម Google Play ប៉ុន្តែវាមិនគាំទ្រនៅលើឧបករណ៍របស់អ្នកទេ។ សូមទាក់ទងក្រុមហ៊ុនផលិតដើម្បីទទួលជំនួយ។"</string>
23
+ <string name="common_google_play_services_update_button" msgid="2221302284291941971">"អាប់ដេត"</string>
24
+ <string name="common_open_on_phone" msgid="311697239335516384">"បើកតាមទូរស័ព្ទ"</string>
25
+ <string name="common_google_play_services_api_unavailable_text" msgid="2785372108150982144">"<xliff:g id="APP_NAME">%1$s</xliff:g> តម្រូវឲ្យមានសេវាកម្ម Google Play មួយ ឬច្រើន ប៉ុន្តែវាមិនមានផ្តល់ជូនទេបច្ចុប្បន្ននេះ។ សូមទាក់ទងអ្នកអភិវឌ្ឍន៍ដើម្បីទទួលជំនួយ។"</string>
26
+ <string name="common_google_play_services_sign_in_failed_title" msgid="8431204498860131150">"បានបរាជ័យក្នុងការចូល"</string>
27
+ <string name="common_google_play_services_sign_in_failed_text" msgid="59739986196915578">"កំហុសក្នុងការចូលគណនីដែលបានបញ្ជាក់ សូមជ្រើសរើសគណនីផ្សេងទៀត។"</string>
28
+ <string name="common_google_play_services_restricted_profile_title" msgid="4958149393843193760">"ប្រវត្តិរូបដែលបានរឹតបន្តឹង"</string>
29
+ <string name="common_google_play_services_restricted_profile_text" msgid="6951442375899151085">"ការចូលដំណើរការគណនីចេញពីប្រវត្តិរូបដែលបានរឹតបន្តឹងមិនត្រូវបានគាំទ្រទេ"</string>
30
+ <string name="common_signin_button_text" msgid="3156914698180786012">"ចូល"</string>
31
+ <string name="common_signin_button_text_long" msgid="1483290677806110088">"ចូលដោយប្រើ Google"</string>
32
+ </resources>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_unknown_issue" msgid="7170719956698345984">"<xliff:g id="APP_NAME">%1$s</xliff:g> កំពុងមានបញ្ហាជាមួយសេវាកម្ម Google Play។ ប្រសិនបើបញ្ហានេះនៅតែបន្តកើតមាន សូមទាក់ទងអ្នកអភិវឌ្ឍន៍ដើម្បីទទួលបានជំនួយ។"</string>
5
+ </resources>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2015 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="place_autocomplete_search_hint" msgid="4600782048316473865">"ស្វែងរក"</string>
7
+ <string name="place_autocomplete_clear_button" msgid="2132213647576279742">"ជម្រះការស្វែងរក"</string>
8
+ </resources>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_notification_ticker" msgid="3936796119014022295">"Google Play ಸೇವೆಗಳ ದೋಷ"</string>
5
+ <string name="common_google_play_services_install_title" msgid="2110712637922504348">"Google Play ಸೇವೆಗಳನ್ನು ಪಡೆಯಿರಿ"</string>
6
+ <string name="common_google_play_services_install_text_phone" msgid="1545874412485515659">"Google Play ಸೇವೆಗಳಿಲ್ಲದೆ ನಿಮ್ಮ ಫೋನ್‍‍ನಿಂದ ಕಾಣೆಯಾಗಿರುವ <xliff:g id="APP_NAME">%1$s</xliff:g> ರನ್ ಆಗುವುದಿಲ್ಲ."</string>
7
+ <string name="common_google_play_services_install_text_tablet" msgid="2742131317258851812">"Google Play ಸೇವೆಗಳಿಲ್ಲದೆ ನಿಮ್ಮ ಟ್ಯಾಬ್ಲೆಟ್‍ನಿಂದ ಕಾಣೆಯಾಗಿರುವ <xliff:g id="APP_NAME">%1$s</xliff:g> ರನ್ ಆಗುವುದಿಲ್ಲ."</string>
8
+ <string name="common_google_play_services_install_button" msgid="5765996826213593005">"Google Play ಸೇವೆಗಳನ್ನು ಪಡೆಯಿರಿ"</string>
9
+ <string name="common_google_play_services_enable_title" msgid="4763733806837472840">"Google Play ಸೇವೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"</string>
10
+ <string name="common_google_play_services_enable_text" msgid="2016066508617425489">"Google Play ಸೇವೆಗಳನ್ನು ನೀವು ಸಕ್ರಿಯಗೊಳಿಸದ ಹೊರತು <xliff:g id="APP_NAME">%1$s</xliff:g> ಕಾರ್ಯನಿರ್ವಹಿಸುವುದಿಲ್ಲ."</string>
11
+ <string name="common_google_play_services_enable_button" msgid="7334167077229901382">"Google Play ಸೇವೆಗಳನ್ನು ಸಕ್ರಿಯಗೊಳಿಸಿ"</string>
12
+ <string name="common_google_play_services_update_title" msgid="2926201203597631481">"Google Play ಸೇವೆಗಳನ್ನು ಅಪ್‌ಡೇಟ್‌ ಮಾಡಿ"</string>
13
+ <string name="common_google_play_services_update_text" msgid="6230553430311881723">"ನೀವು Google Play ಸೇವೆಗಳನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡದ ಹೊರತು <xliff:g id="APP_NAME">%1$s</xliff:g> ರನ್ ಆಗುವುದಿಲ್ಲ."</string>
14
+ <string name="common_google_play_services_wear_update_text" msgid="8334920661858223093">"Google Play ಸೇವೆಗಳ ಹೊಸ ಆವೃತ್ತಿ ಅಗತ್ಯವಿದೆ. ಸದ್ಯದಲ್ಲೇ ಅದು ತಾನಾಗಿಯೇ ಅಪ್‌ಡೇಟ್ ಆಗುತ್ತದೆ."</string>
15
+ <string name="common_google_play_services_updating_title" msgid="1604540693139938838">"Google Play ಸೇವೆಗಳನ್ನು ಅಪ್‌ಡೇಟ್ ಮಾಡಲಾಗುತ್ತಿದೆ"</string>
16
+ <string name="common_google_play_services_updating_text" msgid="1576144479907495032">"Google Play ಸೇವೆಗಳಿಲ್ಲದೆ ಪ್ರಸ್ತುತ ಅಪ್‌ಡೇಟ್ ಆಗುತ್ತಿರುವ <xliff:g id="APP_NAME">%1$s</xliff:g> ರನ್ ಆಗುವುದಿಲ್ಲ."</string>
17
+ <string name="common_google_play_services_network_error_title" msgid="5183831421651758225">"ನೆಟ್‍ವರ್ಕ್ ದೋಷ"</string>
18
+ <string name="common_google_play_services_network_error_text" msgid="2602915190038884860">"Google Play ಸೇವೆಗಳಿಗೆ ಸಂಪರ್ಕ ಹೊಂದಲು ಡೇಟಾ ಸಂಪರ್ಕದ ಅಗತ್ಯವಿದೆ."</string>
19
+ <string name="common_google_play_services_invalid_account_title" msgid="9894539456463288">"ಅಮಾನ್ಯವಾದ ಖಾತೆ"</string>
20
+ <string name="common_google_play_services_invalid_account_text" msgid="8004809446015217370">"ಈ ಸಾಧನದಲ್ಲಿ ನಿರ್ದಿಷ್ಟ ಖಾತೆಯು ಅಸ್ತಿತ್ವದಲ್ಲಿಲ್ಲ. ದಯವಿಟ್ಟು ಬೇರೆಯ ಖಾತೆಯನ್ನು ಆಯ್ಕೆಮಾಡಿ."</string>
21
+ <string name="common_google_play_services_unsupported_title" msgid="909734065366822541">"Google Play ಸೇವೆಗಳು"</string>
22
+ <string name="common_google_play_services_unsupported_text" msgid="4291190028362992831">"<xliff:g id="APP_NAME">%1$s</xliff:g> ನಿಮ್ಮ ಸಾಧನವು ಬೆಂಬಲಿಸದಿರುವಂತಹ Google Play ಸೇವೆಗಳನ್ನು ಅವಲಂಬಿಸಿದೆ. ಸಹಾಯಕ್ಕಾಗಿ ತಯಾರಕರನ್ನು ಸಂಪರ್ಕಿಸಿ."</string>
23
+ <string name="common_google_play_services_update_button" msgid="2221302284291941971">"ಅಪ್‌ಡೇಟ್‌ ಮಾಡು"</string>
24
+ <string name="common_open_on_phone" msgid="311697239335516384">"ಫೋನ್‌ನಲ್ಲಿ ತೆರೆಯಿರಿ"</string>
25
+ <string name="common_google_play_services_api_unavailable_text" msgid="2785372108150982144">"<xliff:g id="APP_NAME">%1$s</xliff:g> ಗೆ ಪ್ರಸ್ತುತವಾಗಿ ಲಭ್ಯವಿಲ್ಲದ ಒಂದು ಅಥವಾ ಹೆಚ್ಚು Google Play ಸೇವೆಗಳ ಅಗತ್ಯವಿದೆ. ದಯವಿಟ್ಟು ಸಹಾಯಕ್ಕಾಗಿ ಡೆವಲಪರ್ ಅನ್ನು ಸಂಪರ್ಕಿಸಿ."</string>
26
+ <string name="common_google_play_services_sign_in_failed_title" msgid="8431204498860131150">"ಸೈನ್ ಇನ್ ವಿಫಲವಾಗಿದೆ"</string>
27
+ <string name="common_google_play_services_sign_in_failed_text" msgid="59739986196915578">"ಸೂಚಿಸಿದ ಖಾತೆಗೆ ಸೈನ್ ಇನ್ ಮಾಡುವಲ್ಲಿ ದೋಷ ಕಂಡುಬಂದಿದೆ. ದಯವಿಟ್ಟು ಬೇರೆಯ ಖಾತೆಯನ್ನು ಆರಿಸಿ."</string>
28
+ <string name="common_google_play_services_restricted_profile_title" msgid="4958149393843193760">"ನಿರ್ಬಂಧಿತ ಪ್ರೊಫೈಲ್"</string>
29
+ <string name="common_google_play_services_restricted_profile_text" msgid="6951442375899151085">"ನಿರ್ಬಂಧಿತ ಪ್ರೊಫೈಲ್‌ನಿಂದ ಖಾತೆಗಳ ಪ್ರವೇಶಿಸುವಿಕೆ ಬೆಂಬಲಿತವಾಗಿಲ್ಲ."</string>
30
+ <string name="common_signin_button_text" msgid="3156914698180786012">"ಸೈನ್ ಇನ್"</string>
31
+ <string name="common_signin_button_text_long" msgid="1483290677806110088">"Google ಮೂಲಕ ಸೈನ್ ಇನ್ ಮಾಡಿ"</string>
32
+ </resources>
@@ -0,0 +1,5 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_unknown_issue" msgid="7170719956698345984">"Google Play ಸೇವೆಗಳಲ್ಲಿ <xliff:g id="APP_NAME">%1$s</xliff:g> ಅಪ್ಲಿಕೇಶನ್ ಸಮಸ್ಯೆಯನ್ನು ಎದುರಿಸುತ್ತಿದೆ. ಸಮಸ್ಯೆ ಮುಂದುವರಿದರೆ, ಸಹಾಯಕ್ಕಾಗಿ ಡೆವಲಪರ್ ಅನ್ನು ಸಂಪರ್ಕಿಸಿ."</string>
5
+ </resources>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!-- Copyright 2015 Google Inc. All Rights Reserved. -->
3
+
4
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
5
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
6
+ <string name="place_autocomplete_search_hint" msgid="4600782048316473865">"ಹುಡುಕು"</string>
7
+ <string name="place_autocomplete_clear_button" msgid="2132213647576279742">"ಹುಡುಕಾಟ ತೆರವುಗೊಳಿಸಿ"</string>
8
+ </resources>
@@ -0,0 +1,32 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <resources xmlns:android="http://schemas.android.com/apk/res/android"
3
+ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
4
+ <string name="common_google_play_services_notification_ticker" msgid="3936796119014022295">"Google Play 서비스 오류"</string>
5
+ <string name="common_google_play_services_install_title" msgid="2110712637922504348">"Google Play 서비스 설치"</string>
6
+ <string name="common_google_play_services_install_text_phone" msgid="1545874412485515659">"스마트폰에 Google Play 서비스가 설치되어 있어야 <xliff:g id="APP_NAME">%1$s</xliff:g>이(가) 실행됩니다."</string>
7
+ <string name="common_google_play_services_install_text_tablet" msgid="2742131317258851812">"태블릿에 Google Play 서비스가 설치되어 있어야 <xliff:g id="APP_NAME">%1$s</xliff:g>이(가) 실행됩니다."</string>
8
+ <string name="common_google_play_services_install_button" msgid="5765996826213593005">"Google Play 서비스 설치"</string>
9
+ <string name="common_google_play_services_enable_title" msgid="4763733806837472840">"Google Play 서비스 사용"</string>
10
+ <string name="common_google_play_services_enable_text" msgid="2016066508617425489">"Google Play 서비스를 사용하도록 설정해야 <xliff:g id="APP_NAME">%1$s</xliff:g>이(가) 작동합니다."</string>
11
+ <string name="common_google_play_services_enable_button" msgid="7334167077229901382">"Google Play 서비스 사용"</string>
12
+ <string name="common_google_play_services_update_title" msgid="2926201203597631481">"Google Play 서비스 업데이트"</string>
13
+ <string name="common_google_play_services_update_text" msgid="6230553430311881723">"Google Play 서비스를 업데이트해야 <xliff:g id="APP_NAME">%1$s</xliff:g>이(가) 실행됩니다."</string>
14
+ <string name="common_google_play_services_wear_update_text" msgid="8334920661858223093">"새 버전의 Google Play 서비스가 필요합니다. 곧 자동으로 업데이트됩니다."</string>
15
+ <string name="common_google_play_services_updating_title" msgid="1604540693139938838">"Google Play 서비스 업데이트 중"</string>
16
+ <string name="common_google_play_services_updating_text" msgid="1576144479907495032">"현재 업데이트 중인 Google Play 서비스가 있어야 <xliff:g id="APP_NAME">%1$s</xliff:g>이(가) 실행됩니다."</string>
17
+ <string name="common_google_play_services_network_error_title" msgid="5183831421651758225">"네트워크 오류"</string>
18
+ <string name="common_google_play_services_network_error_text" msgid="2602915190038884860">"Google Play 서비스에 연결하려면 데이터 연결이 필요합니다."</string>
19
+ <string name="common_google_play_services_invalid_account_title" msgid="9894539456463288">"계정 오류"</string>
20
+ <string name="common_google_play_services_invalid_account_text" msgid="8004809446015217370">"지정한 계정이 이 기기에 존재하지 않습니다. 다른 계정을 선택하세요."</string>
21
+ <string name="common_google_play_services_unsupported_title" msgid="909734065366822541">"Google Play 서비스"</string>
22
+ <string name="common_google_play_services_unsupported_text" msgid="4291190028362992831">"<xliff:g id="APP_NAME">%1$s</xliff:g>에 필요한 Google Play 서비스가 사용자 기기에서 지원되지 않습니다. 기기 제조업체에 문의하시기 바랍니다."</string>
23
+ <string name="common_google_play_services_update_button" msgid="2221302284291941971">"업데이트"</string>
24
+ <string name="common_open_on_phone" msgid="311697239335516384">"스마트폰에서 열기"</string>
25
+ <string name="common_google_play_services_api_unavailable_text" msgid="2785372108150982144">"현재 <xliff:g id="APP_NAME">%1$s</xliff:g>에 필요한 하나 이상의 Google Play 서비스를 사용할 수 없습니다. 개발자에게 문의하여 도움을 받으시기 바랍니다."</string>
26
+ <string name="common_google_play_services_sign_in_failed_title" msgid="8431204498860131150">"로그인 실패"</string>
27
+ <string name="common_google_play_services_sign_in_failed_text" msgid="59739986196915578">"지정한 계정에 로그인하는 중에 오류가 발생했습니다. 다른 계정을 선택해 주세요."</string>
28
+ <string name="common_google_play_services_restricted_profile_title" msgid="4958149393843193760">"제한된 프로필"</string>
29
+ <string name="common_google_play_services_restricted_profile_text" msgid="6951442375899151085">"제한된 프로필에서 계정에 액세스할 수 없습니다."</string>
30
+ <string name="common_signin_button_text" msgid="3156914698180786012">"로그인"</string>
31
+ <string name="common_signin_button_text_long" msgid="1483290677806110088">"Google 계정으로 로그인"</string>
32
+ </resources>