You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

71 lines
2.2 KiB
PHP

<?php
/**
* Strings for i18n.
*/
/*
* attackplace.php, claimplace.php, refillplace.php
*/
define("PLACE_ID_NOT_SENT", "No target! 1234");
define("PLACE_OWNED_BY_SAME_TEAM", "Cannot attack! 1234");
define("PLAYER_NO_LIFE_LEFT", "No life left! 1234");
define("PLACE_SUCCESS", "Success! 1234");
define("PLAYER_LEVEL_UP", "Level up! 1234");
define("PLACE_NO_LIFE_CLAIM", "Cannot claim! 1234");
define("PLACE_OWNED_BY_WRONG_TEAM", "Wrong team! 1234");
define("PLACE_OWNED_BY_PLAYER_TEAM", "Don't attack your own kind! 1234");
define("PLACE_HEALTH_IS_FULL", "Full! 1234");
define("PLACE_HEALTH_REFILLED", "Refilled! 1234");
/*
* buyitem.php
*/
define("ITEM_UNAVAILABLE", "That item is not available at this time. 1234");
define("ITEM_INCORRECT_PRICE", "That item is no longer available at that price. 1234");
define("PLAYER_NOT_ENOUGH_CREDITS", "You don't have enough money! 1234");
define("ITEM_PURCHASED", "Thanks for your purchase! 1234");
/*
* code2item.php
*/
define("BARCODE_ALREADY_FOUND_TITLE", "Huh? 1234");
define("BARCODE_ALREADY_FOUND_MSG", "You've already found this code! 1234");
define("BARCODE_INVALID", "Bad code! 1234");
define("BARCODE_ITEM_FOUND_TITLE", "Found an item! 1234");
define("BARCODE_ITEM_FOUND_MSG", "Found one %1 1234");
/*
* giveitem.php, useitem.php
*/
define("INVALID_ITEMID", "Invalid item id. 1234");
define("INVALID_NICKNAME", "Invalid nickname. 1234");
/*
* login.php
*/
define("USERNAME_MISSING", "Missing username. 1234");
define("PASSWORD_MISSING", "Missing password. 1234");
define("ACCOUNT_MISSING", "Account does not exist. 1234");
/*
* munzee.php
*/
define("MUNZEE_LINKED_HTML", "Your Munzee account has been linked to TerranQuest!<br /><a href='about:closeme'>Back to game</a> 1234");
define("MUNZEE_FAILED_HTML", "Munzee is having problems right now. Try again later.<br /><a href='about:closeme'>Back to game</a> 1234");
/*
* onlyloggedin.php, ping.php
*/
define("SESSION_EXPIRED", "Your session has expired. Please log in again. 1234");
/*
* processiap.php
*/
define("INVALID_IAP", "Purchase not valid! 1234");
/*
* setteam.php
*/
define("INVALID_TEAM_ID", "Invalid team ID. 1234");
define("TEAM_ALREADY_CHOSEN", "You have already chosen a team. Contact support for problems. 1234");