View Single Post
07/12/15, 03:13 PM   #6
circonian
AddOn Author - Click to view addons
Join Date: May 2014
Posts: 613
EN

Lua Code:
  1. ZO_CreateStringId("SI_TF_NAME_TEAMFORMATION", "|c00C000Provision|r's |cFF9999Team|cFF0000Formation|r")
  2. ZO_CreateStringId("SI_TF_DESC_TEAMFORMATION", "TeamFormation shows team formation, useful for grouping with 4+ members.")
  3.  
  4. ZO_CreateStringId("SI_TF_ENABLED", "|cFF9999Team|cFF0000Formation|r is enabled.")
  5. ZO_CreateStringId("SI_TF_DISABLED", "|cFF9999Team|cFF0000Formation|r is disabled.")
  6.  
  7. ZO_CreateStringId("SI_TF_SETTING_ENABLED", "Enable TeamFormation")
  8. ZO_CreateStringId("SI_TF_SETTING_ENABLED_TOOLTIP", "Turn TeamFormation ON/OFF.")
  9.  
  10. ZO_CreateStringId("SI_TF_SETTING_SHOWNOW", "Show UI")
  11. ZO_CreateStringId("SI_TF_SETTING_SHOWNOW_TOOLTIP", "Show TeamFormation to watch changes in real time.")
  12.  
  13.  ZO_CreateStringId("SI_TF_SETTING_SIZEOPTIONS", "TeamFormation size and position")
  14. ZO_CreateStringId("SI_TF_SETTING_SIZEOPTIONS_TOOLTIP", "Set the size and the position of TeamFormation.")
  15. ZO_CreateStringId("SI_TF_SETTING_X", "X Position")
  16. ZO_CreateStringId("SI_TF_SETTING_X_TOOLTIP", "Change the X position of TeamFormation.")
  17. ZO_CreateStringId("SI_TF_SETTING_Y", "Y Position")
  18. ZO_CreateStringId("SI_TF_SETTING_Y_TOOLTIP", "Change the Y position of TeamFormation.")
  19. ZO_CreateStringId("SI_TF_SETTING_WIDTH", "Width")
  20. ZO_CreateStringId("SI_TF_SETTING_WIDTH_TOOLTIP", "Change the Width of TeamFormation.")
  21. ZO_CreateStringId("SI_TF_SETTING_HEIGHT", "Height")
  22. ZO_CreateStringId("SI_TF_SETTING_HEIGHT_TOOLTIP", "Change the Height of TeamFormation.")
  23. ZO_CreateStringId("SI_TF_SETTING_LOCK", "Lock Position")
  24. ZO_CreateStringId("SI_TF_SETTING_LOCK_TOOLTIP", "Lock TeamFormation position, make it unmovable.")
  25.  
  26. ZO_CreateStringId("SI_TF_SETTING_FOCUSOPTIONS", "TeamFormation screen")
  27. ZO_CreateStringId("SI_TF_SETTING_FOCUSOPTIONS_TOOLTIP", "Configure the UI of TeamFormation.")
  28. ZO_CreateStringId("SI_TF_SETTING_SHAPE", "Shape of the screen")
  29. ZO_CreateStringId("SI_TF_SETTING_SHAPE_TOOLTIP", "Change the shape of TeamFormation.")
  30. ZO_CreateStringId("SI_TF_SETTING_SHAPE_RECTANGULAR", "Rectangular")
  31. ZO_CreateStringId("SI_TF_SETTING_SHAPE_CIRCULAR", "Circular")
  32. ZO_CreateStringId("SI_TF_SETTING_SCALE", "Scale")
  33. ZO_CreateStringId("SI_TF_SETTING_SCALE_TOOLTIP", "Change the scale of pins.")
  34. ZO_CreateStringId("SI_TF_SETTING_LOGDIST", "Distance logarithmic")
  35.  
  36. ZO_CreateStringId("SI_TF_SETTING_LOGDIST_TOOLTIP", "0 = Linear\nAdjusts the maximum pin distance.")
  37.  
  38. --[[
  39. These are grammatically correct, but I would guess that most people would not know what cardinal points
  40.  are. Most people would probably understand something more specific referencing North, South, East, &
  41.  West, but I'm not sure how to write it because I'm not sure what its for. I didn't see the setting change
  42.  the compass pins transparency & didn't see any other N-S-E-W in the addon pictures.
  43. --]]
  44. ZO_CreateStringId("SI_TF_SETTING_CARDINAL", "Transparency of the cardinal points")
  45. ZO_CreateStringId("SI_TF_SETTING_CARDINAL_TOOLTIP", "0 = Hidden\Adjusts the transparency of the four cardinal points.")
  46. -- Maybe add:
  47. ZO_CreateStringId("SI_TF_SETTING_CARDINAL_TOOLTIP", "0 = Hidden\Adjusts the transparency of the four cardinal points (North, South, East, & West).")
  48.  
  49.  
  50. ZO_CreateStringId("SI_TF_SETTING_OUTOFCOMBATHIDE", "Autohide when out of Combat")
  51. ZO_CreateStringId("SI_TF_SETTING_OUTOFCOMBATHIDE_TOOLTIP", "Automatically hide TeamFormation when out of combat.")
  Reply With Quote