CS_AK

locales.lua

Dec 14th, 2025 (edited)
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.96 KB | None | 0 0
  1. Config.Locales = {
  2.   ["page_treasure_hunt_title"] = {"Treasure Hunt", "Find the treasure based on the photo!"},
  3.   ["collect_status"] = {"Collected", "Not Collected"},
  4.   ["treasure_hunt_not_available"] = "There is currently no treasure hunt taking place!",
  5.   ["super_prize"] = {
  6.     ["active"] = {"Super prize is active!", "Collect the treasure to receive the super prize!"},
  7.     ["not_active"] = {"Super prize is not active!", "Collect %s more treasures to activate the super prize!"},
  8.   },
  9.   ["page_manage_locations_title"] = {"Locations", "Manage locations for the treasures!"},
  10.   ["page_settings_title"] = {"Settings", "Configure the app for your players!"},
  11.   ["settings_item"] = {
  12.     ["clear_leaderboard"] = "Reset leaderboard",
  13.     ["manage_locations"] = "Manage locations"
  14.   },
  15.   ["page_leaderboard_title"] = {"Leaderboard", "Compare yourself with other players!"},
  16.   ["leaderboard_ranking"] = "Ranking",
  17.   ["leaderboard_name"] = "Name",
  18.   ["leaderboard_score"] = "Points",
  19.   ["leaderboard_no_entries_found"] = "No entries found",
  20.   ["page_history_title"] = {"History", "Check all your found treasures!"},
  21.   ["no_history_found"] = "No history available",
  22.   ["no_locations_found"] = "No locations available",
  23.   ["locations_count"] = "Locations: %s",
  24.   ["history_treasure_count"] = "Treasures: %s",
  25.   ["history_item"] = {
  26.     ["info_title"] = "Information",
  27.     ["date"] = "Date",
  28.     ["super_prize"] = {"Super Prize", "Yes", "No"},
  29.  
  30.     ["reward_title"] = "Reward",
  31.     ["name"] = "Name",
  32.     ["amount"] = "Amount",
  33.   },
  34.   ["add_new_location_button"] = "Add new location",
  35.   ["delete_all_locations_button"] = "Delete all locations",
  36.   ["teleport_button"] = "Teleport",
  37.   ["add_button"] = "Add",
  38.   ["cancel_button"] = "Cancel",
  39.   ["delete_button"] = "Delete",
  40.   ["placeholder_coords"] = "Coordinates",
  41.   ["placeholder_image"] = "Image (url)",
  42.  
  43.   ["popup_regenerate_treasure"] = {"Generate a new treasure?", "Having trouble finding the treasure? Generate a new one for %s!", {"Cancel", "Confirm"}},
  44.   ["popup_delete_location"] = {"Delete location?", "Are you sure you want to delete this location?", {"Cancel", "Delete"}},
  45.   ["popup_delete_all_locations"] = {"Delete all locations?", "Are you sure you want to delete all locations?", {"Cancel", "Delete all"}},
  46.   ["popup_clear_leaderboard"] = {"Reset leaderboard?", "Are you sure you want to reset the leaderboard?", {"Cancel", "Reset"}},
  47.  
  48.  
  49.   ["notifications"] = {
  50.     ["collected"] = {
  51.       enabled = true, -- Enable the notification?
  52.       phoneNotify = true, -- Wether use phone notification or Config.Notify
  53.       data = {title = "Treasure Collected", message = "Check your history for more information!"}, -- Most notify systems provide some options like "type" or "color" just add them here and configure it in Config.Notify, if phoneNotify is set to "true" only "title" and "message" will be used.
  54.     },
  55.     ["created"] = {
  56.       enabled = true, -- Enable the notification?
  57.       phoneNotify = true, -- Wether use phone notification or Config.Notify
  58.       data = {title = "Location Created", message = "A new location has been added!"}, -- Most notify systems provide some options like "type" or "color" just add them here and configure it in Config.Notify, if phoneNotify is set to "true" only "title" and "message" will be used.
  59.     },
  60.     ["deleted"] = {
  61.       enabled = true, -- Enable the notification?
  62.       phoneNotify = true, -- Wether use phone notification or Config.Notify
  63.       data = {title = "Location Deleted", message = "Location has been deleted!"}, -- Most notify systems provide some options like "type" or "color" just add them here and configure it in Config.Notify, if phoneNotify is set to "true" only "title" and "message" will be used.
  64.     },
  65.     ["deleted_all"] = {
  66.       enabled = true, -- Enable the notification?
  67.       phoneNotify = true, -- Wether use phone notification or Config.Notify
  68.       data = {title = "Locations Deleted", message = "All locations has been deleted!"}, -- Most notify systems provide some options like "type" or "color" just add them here and configure it in Config.Notify, if phoneNotify is set to "true" only "title" and "message" will be used.
  69.     },
  70.     ["new_treasure"] = {
  71.       enabled = true, -- Enable the notification?
  72.       phoneNotify = true, -- Wether use phone notification or Config.Notify
  73.       data = {title = "A new treasure has appeared", message = "Check your app for more information!"}, -- Most notify systems provide some options like "type" or "color" just add them here and configure it in Config.Notify, if phoneNotify is set to "true" only "title" and "message" will be used.
  74.     },
  75.     ["super_prize_active"] = {
  76.       enabled = true, -- Enable the notification?
  77.       phoneNotify = true, -- Wether use phone notification or Config.Notify
  78.       data = {title = "Super Prize Activated", message = "Get even bigger rewards!"}, -- Most notify systems provide some options like "type" or "color" just add them here and configure it in Config.Notify, if phoneNotify is set to "true" only "title" and "message" will be used.
  79.     },
  80.     ["cannot_efford"] = {
  81.       enabled = true, -- Enable the notification?
  82.       phoneNotify = true, -- Wether use phone notification or Config.Notify
  83.       data = {title = "Transaction Failed", message = "You are missing %s to complete the transaction!"}, -- Most notify systems provide some options like "type" or "color" just add them here and configure it in Config.Notify, if phoneNotify is set to "true" only "title" and "message" will be used.
  84.     },
  85.  
  86.  
  87.     ["cannot_carry"] = {
  88.       enabled = true, -- Enable the notification?
  89.       phoneNotify = false, -- Wether use phone notification or Config.Notify
  90.       data = {title = "Cannot Carry", message = "The reward might be to heavy to carry, try to make some space!"}, -- Most notify systems provide some options like "type" or "color" just add them here and configure it in Config.Notify, if phoneNotify is set to "true" only "title" and "message" will be used.
  91.     },
  92.   },
  93. }
Advertisement
Add Comment
Please, Sign In to add comment