Advertisement
Guest User

Untitled

a guest
Feb 27th, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. aRomans-MacBook-Air:common holms$ cat locale.sls
  2. {% set locales = [
  3. 'ar_AE.UTF-8 UTF-8',
  4. 'ar_SA.UTF-8 UTF-8',
  5. 'bn_BD UTF-8',
  6. 'cs_CZ.UTF-8 UTF-8',
  7. 'da_DK.UTF-8 UTF-8',
  8. 'de_DE.UTF-8 UTF-8',
  9. 'en_GB.UTF-8 UTF-8',
  10. 'en_CA.UTF-8 UTF-8',
  11. 'en_AU.UTF-8 UTF-8',
  12. 'en_NZ.UTF-8 UTF-8',
  13. 'en_SG.UTF-8 UTF-8',
  14. 'en_PH.UTF-8 UTF-8',
  15. 'en_ZA.UTF-8 UTF-8',
  16. 'es_ES.UTF-8 UTF-8',
  17. 'es_MX.UTF-8 UTF-8',
  18. 'fi_FI.UTF-8 UTF-8',
  19. 'fr_FR.UTF-8 UTF-8',
  20. 'hi_IN UTF-8',
  21. 'hu_HU.UTF-8 UTF-8',
  22. 'id_ID.UTF-8 UTF-8',
  23. 'it_IT.UTF-8 UTF-8',
  24. 'ja_JP.UTF-8 UTF-8',
  25. 'ko_KR.UTF-8 UTF-8',
  26. 'nl_NL.UTF-8 UTF-8',
  27. 'nn_NO.UTF-8 UTF-8',
  28. 'pl_PL.UTF-8 UTF-8',
  29. 'pt_BR.UTF-8 UTF-8',
  30. 'pt_PT.UTF-8 UTF-8',
  31. 'ru_RU.UTF-8 UTF-8',
  32. 'sv_SE.UTF-8 UTF-8',
  33. 'th_TH.UTF-8 UTF-8',
  34. 'tl_PH.UTF-8 UTF-8',
  35. 'vi_VN UTF-8',
  36. 'zh_CN.UTF-8 UTF-8',
  37. 'zh_TW.UTF-8 UTF-8',
  38. 'zh_HK.UTF-8 UTF-8',
  39. 'de_CH ISO-8859-1',
  40. 'he_IL.UTF-8 UTF-8',
  41. 'ms_MY.UTF-8 UTF-8'
  42. ] %}
  43.  
  44. {% for locale in locales %}
  45. {{ locale }}:
  46. locale.present
  47. {% endfor %}
  48.  
  49. en_US.UTF-8:
  50. locale.systemroot@zipier:~# locale-gen "ms_MY.UTF-8 UTF-8"
  51. root@zipier:~#
  52. root@zipier:~# locale-gen
  53. Generating locales...
  54. en_US.UTF-8... up-to-date
  55. Generation complete.
  56. root@zipier:~# locale-gen ms_MY.UTF-8 UTF-8
  57. root@zipier:~# locale-gen
  58. Generating locales...
  59. en_US.UTF-8... up-to-date
  60. ms_MY.UTF-8... done
  61. Generation complete.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement