View Single Post
12/11/18, 06:04 PM   #20
Gamer1986PAN
AddOn Author - Click to view addons
Join Date: Sep 2015
Posts: 87
Now that other clients work, a Russian translation would be great. I hope there is someone who does the translation. To make the slash-command-porting work in your client-language please contact Baertram and help him to update LibZone
We try to make other languages later via the settings selectable - regardless of the system language - but standard is of course the system language.
If you want to use one of the posted translations you can copy and paste that in your en.lua localication file until we bring the option.


Lua Code:
  1. -----------------------------------------------------------------------------
  2. -- INTERFACE
  3. -----------------------------------------------------------------------------
  4. mkstr(SI.TELECLOSE, "Close")
  5. mkstr(SI.TELE_UI_PLAYER, "Player")
  6. mkstr(SI.TELE_UI_ZONE, "Zone")
  7. mkstr(SI.TELE_UI_TOTAL, "Total: ")
  8. mkstr(SI.TELE_UI_GOLD, "Saved Gold: ")
  9. mkstr(SI.TELE_UI_GOLD_ABBR, "k")
  10. mkstr(SI.TELE_UI_DIA_TITLE, "Start automatic wayshrine Unlock?")
  11. mkstr(SI.TELE_UI_DIA_BODY, "By confirming, the teleporter directly starts a series of incomplete fast travel operations to players in your current zone. If these players are in the vicinity of unknown wayshrines, this process is sufficient for you to be able to use these wayshrines in the future. No complete fast travel operation is necessary, you can move to interrupt the teleport process.")
  12. ---------
  13. --------- Buttons
  14. mkstr(SI.TELE_UI_BTN_SEARCH_PLAYER, "Search by Player")
  15. mkstr(SI.TELE_UI_BTN_SEARCH_ZONE, "Search by Zone")
  16. mkstr(SI.TELE_UI_BTN_REFRESH_ALL, "Refresh all Zones")
  17. mkstr(SI.TELE_UI_BTN_UNLOCK_WS, "Unlock current Zone Wayshrines")
  18. mkstr(SI.TELE_UI_BTN_CURRENT_ZONE, "Only displayed Zone")
  19. mkstr(SI.TELE_UI_BTN_CURRENT_ZONE_DELVES, "Only Delves in displayed Zone")
  20. mkstr(SI.TELE_UI_BTN_RELATED_ITEMS, "Map related Zones")
  21. mkstr(SI.TELE_UI_BTN_SETTINGS, "Settings")
  22. mkstr(SI.TELE_UI_BTN_FEEDBACK, "Feedback\n(We are playing on EU server)")
  23. ---------
  24. --------- List
  25. mkstr(SI.TELE_UI_SOURCE_GROUP, "Group")
  26. mkstr(SI.TELE_UI_SOURCE_FRIEND, "Friend")
  27. mkstr(SI.TELE_UI_NO_MATCHES, "No Matches")
  28. mkstr(SI.TELE_UI_UNRELATED_ITEMS, "Maps in other Zones")
  29. ---------
  30. --------- Menu
  31. mkstr(SI.TELE_UI_FAVORITE_PLAYER, "Player Favorite")
  32. mkstr(SI.TELE_UI_FAVORITE_ZONE, "Zone Favorite")
  33. mkstr(SI.TELE_UI_REMOVE_FAVORITE_PLAYER, "Remove Player Favorite")
  34. mkstr(SI.TELE_UI_REMOVE_FAVORITE_ZONE, "Remove Zone Favorite")
  35. mkstr(SI.TELE_UI_ADD_TO_GROUP, "Invite to Group")
  36. mkstr(SI.TELE_UI_PROMOTE_TO_LEADER, "Promote to Leader")
  37. mkstr(SI.TELE_UI_VOTE_TO_LEADER, "Vote to Leader")
  38. mkstr(SI.TELE_UI_KICK_FROM_GROUP, "Kick from Group")
  39. mkstr(SI.TELE_UI_VOTE_KICK_FROM_GROUP, "Vote to Kick")
  40. mkstr(SI.TELE_UI_LEAVE_GROUP, "Leave Group")
  41. mkstr(SI.TELE_UI_WHISPER_PLAYER, "Whisper")
  42. mkstr(SI.TELE_UI_JUMP_TO_HOUSE, "Visit Primary Residence")
  43. mkstr(SI.TELE_UI_ADD_FRIEND, "Add Friend")
  44. mkstr(SI.TELE_UI_REMOVE_FRIEND, "Remove Friend")
  45. mkstr(SI.TELE_UI_SEND_MAIL, "Send Mail")
  46. mkstr(SI.TELE_UI_FILTER_GROUP, "Only Group")
  47. mkstr(SI.TELE_UI_FILTER_FRIENDS, "Only Friends")
  48. mkstr(SI.TELE_UI_FILTER_GUILDS, "Only Guilds")
  49.  
  50. mkstr(SI.TELE_UI_SUBMENU_FAVORITES, "Favorites")
  51. mkstr(SI.TELE_UI_SUBMENU_MISC, "Miscellaneous")
  52. mkstr(SI.TELE_UI_SUBMENU_GROUP, "Group")
  53. mkstr(SI.TELE_UI_SUBMENU_FILTER, "Filter")
  54.  
  55.  
  56.  
  57. -----------------------------------------------------------------------------
  58. -- CHAT OUTPUTS
  59. -----------------------------------------------------------------------------
  60. mkstr(SI.TELE_CHAT_UNABLE_TO_PORTAL, "Unable to port to Player")
  61. mkstr(SI.TELE_CHAT_TO_PLAYER, "Porting to Player: ")
  62. mkstr(SI.TELE_CHAT_UNLOCK_START_INFO, "This will unlock all unknown wayshrines in the current map - if players you can travel to are in their vicinity.")
  63. mkstr(SI.TELE_CHAT_AGAIN_DISABLE, "Tap button again to abort the process")
  64. mkstr(SI.TELE_CHAT_ERROR, "Error while porting to Player")
  65. mkstr(SI.TELE_CHAT_UNLOCK_WS_ABORTED, "Auto Unlock aborted")
  66. mkstr(SI.TELE_CHAT_UNLOCK_WS_SUCCESS, "Auto Unlock successful finished")
  67. mkstr(SI.TELE_CHAT_UNLOCK_WS_COUNT_CALC, "Calculate unlocked wayshrines ...")
  68. mkstr(SI.TELE_CHAT_UNLOCK_WS_COUNT_PLU, "new wayshrines have been unlocked")
  69. mkstr(SI.TELE_CHAT_UNLOCK_WS_COUNT_SING, "new wayshrine have been unlocked")
  70. mkstr(SI.TELE_CHAT_UNLOCK_WS_NO_PLAYERS, "No Players to port to")
  71. mkstr(SI.TELE_CHAT_FAVORITE_UNSET, "Favorite slot is unset")
  72. mkstr(SI.TELE_CHAT_FAVORITE_PLAYER_NO_FAST_TRAVEL, "The player is offline or hidden by set filters")
  73. mkstr(SI.TELE_CHAT_FAVORITE_ZONE_NO_FAST_TRAVEL, "No fast travel option found")
  74. mkstr(SI.TELE_CHAT_NOT_IN_GROUP, "You are not in a group")
  75.  
  76.  
  77.  
  78. -----------------------------------------------------------------------------
  79. -- SETTINGS
  80. -----------------------------------------------------------------------------
  81. mkstr(SI.TELE_SETTINGS_SHOW_ON_MAP_OPEN, "Open / Close Teleporter with Map")
  82. mkstr(SI.TELE_SETTINGS_SHOW_ON_MAP_OPEN_TOOLTIP, "When you open the map, Teleporter will automatically open as well, otherwise you'll get a button on the map top left.")
  83. mkstr(SI.TELE_SETTINGS_ZONE_ONCE_ONLY, "Show every Zone once only")
  84. mkstr(SI.TELE_SETTINGS_ZONE_ONCE_ONLY_TOOLTIP, "Show only one entry for each found zone.")
  85. mkstr(SI.TELE_SETTINGS_AUTO_PORT_FREQ, "Frequency of unlocking wayshrines (ms)")
  86. mkstr(SI.TELE_SETTINGS_AUTO_PORT_FREQ_TOOLTIP, "Adjust the frequency of the automatic wayshrine unlocking. For slow computers or to prevent possible kicks from the game, a higher value can help.")
  87. mkstr(SI.TELE_SETTINGS_AUTO_REFRESH, "Refresh & Reset on opening")
  88. mkstr(SI.TELE_SETTINGS_AUTO_REFRESH_TOOLTIP, "Refresh result list each time you open the Teleporter. Input fields are cleared.")
  89. mkstr(SI.TELE_SETTINGS_HEADER_BLACKLISTING, "Blacklisting")
  90. mkstr(SI.TELE_SETTINGS_HIDE_OTHERS, "Hide various inaccessible Zones")
  91. mkstr(SI.TELE_SETTINGS_HIDE_OTHERS_TOOLTIP, "Hide zones like Maelstrom Arena, Outlaw Refuges and solo zones.")
  92. mkstr(SI.TELE_SETTINGS_HIDE_PVP, "Hide PVP Zones")
  93. mkstr(SI.TELE_SETTINGS_HIDE_PVP_TOOLTIP, "Hide zones like Cyrodiil, Imperial City and Battlegrounds.")
  94. mkstr(SI.TELE_SETTINGS_HIDE_CLOSED_DUNGEONS, "Hide Group Dungeons and Trials")
  95. mkstr(SI.TELE_SETTINGS_HIDE_CLOSED_DUNGEONS_TOOLTIP, "Hide all 4 men Group Dungeons, 12 men Trials and Group Dungeons in Craglorn. Group members in these zones will still be displayed!")
  96. mkstr(SI.TELE_SETTINGS_HIDE_HOUSES, "Hide Houses")
  97. mkstr(SI.TELE_SETTINGS_HIDE_HOUSES_TOOLTIP, "Hide all Houses.")
  98. mkstr(SI.TELE_SETTINGS_DISABLE_DIALOG, "Hide Auto Unlock confirmation dialog")
  99. mkstr(SI.TELE_SETTINGS_DISABLE_DIALOG_TOOLTIP, "Do not show any confirmation dialog when you use the Auto Unlock feature.")
  100. mkstr(SI.TELE_SETTINGS_WINDOW_STAY, "Keep Teleporter open")
  101. mkstr(SI.TELE_SETTINGS_WINDOW_STAY_TOOLTIP, "When you open the Teleporter via keybind, it will stay even if you move or open other windows. If you use this option, it is recommended to disable the option 'Open / Close Teleporter with Map'.")
  102. mkstr(SI.TELE_SETTINGS_ONLY_MAPS, "Show only Regions / Overland-Maps")
  103. mkstr(SI.TELE_SETTINGS_ONLY_MAPS_TOOLTIP, "Show only the main regions like Deshaan or Summerset.")
  104. mkstr(SI.TELE_SETTINGS_AUTO_REFRESH_FREQ, "Refresh interval (s)")
  105. mkstr(SI.TELE_SETTINGS_AUTO_REFRESH_FREQ_TOOLTIP, "When the Teleporter is open, an automatic update of the results is performed every x seconds. Set the value to 0 to disable the automatic refresh.")
  106. mkstr(SI.TELE_SETTINGS_FOCUS_ON_MAP_OPEN, "Focus the zone search box")
  107. mkstr(SI.TELE_SETTINGS_FOCUS_ON_MAP_OPEN_TOOLTIP, "Focus the zone search box when the Teleporter is opened together with the map.")
  108. mkstr(SI.TELE_SETTINGS_HIDE_DELVES, "Hide Delves")
  109. mkstr(SI.TELE_SETTINGS_HIDE_DELVES_TOOLTIP, "Hide all Delves.")
  110. mkstr(SI.TELE_SETTINGS_HIDE_PUBLIC_DUNGEONS, "Hide Public Dungeons")
  111. mkstr(SI.TELE_SETTINGS_HIDE_PUBLIC_DUNGEONS_TOOLTIP, "Hide all Public Dungeons.")
  112. mkstr(SI.TELE_SETTINGS_FORMAT_ZONE_NAME, "Hide articles of zone names")
  113. mkstr(SI.TELE_SETTINGS_FORMAT_ZONE_NAME_TOOLTIP, "Hide the articles of zone names to ensure a better sorting to find zones faster.")
  114. mkstr(SI.TELE_SETTINGS_NUMBER_LINES, "Number of lines / entries")
  115. mkstr(SI.TELE_SETTINGS_NUMBER_LINES_TOOLTIP, "By setting the number of visible lines / entries you can control the total height of the Addon.")
  116. mkstr(SI.TELE_SETTINGS_FIXED_WINDOW, "Fix window / elements")
  117. mkstr(SI.TELE_SETTINGS_FIXED_WINDOW_TOOLTIP, "Fix the BeamMeUp window whereby it is not longer movable via mouse.")
  118. mkstr(SI.TELE_SETTINGS_HEADER_ADVANCED, "Advanced")
  119. mkstr(SI.TELE_SETTINGS_SORT_CATEGORY, "Sort by zone category")
  120. mkstr(SI.TELE_SETTINGS_SORT_CATEGORY_TOOLTIP, "Sort the entries by their zone category: Overland, Public Dungeons, Delves, uncategorized zones, 12 men Raids (Trials), 4 men Dungeons, other group zones, Houses")
  121.  
  122.  
  123.  
  124.  
  125. -----------------------------------------------------------------------------
  126. -- KEY BINDING
  127. -----------------------------------------------------------------------------
  128. mkstr(SI.TELE_KEYBINDING_TOGGLE_MAIN, "Open Teleporter")
  129. mkstr(SI.TELE_KEYBINDING_TOGGLE_MAIN_RELATED_ITEMS, "Treasure and Survey Maps")
  130. mkstr(SI.TELE_KEYBINDING_TOGGLE_MAIN_CURRENT_ZONE, "Current Zone")
  131. mkstr(SI.TELE_KEYBINDING_TOGGLE_MAIN_DELVES, "Delves in current Zone")
  132. mkstr(SI.TELE_KEYBINDING_REFRESH, "Refresh")
  133. mkstr(SI.TELE_KEYBINDING_WAYSHRINE_UNLOCK, "Unlocking wayshrines")
  134. mkstr(SI.TELE_KEYBINDING_GROUP_LEADER, "Port to Group Leader")
  135.  
  136.  
  137.  
  138.  
  139. -----------------------------------------------------------------------------
  140. -- ITEM NAMES (PART OF IT)
  141. -----------------------------------------------------------------------------
  142. mkstr(SI.CONSTANT_TREASURE_MAP, "treasure map") -- need a part of the item name that is in every treasure map item the same no matter which zone
  143. mkstr(SI.CONSTANT_SURVEY_MAP, "survey:") -- need a part of the item name that is in every survey map item the same no matter which zone and kind of craft
  Reply With Quote