Guest User

Untitled

a guest
Jun 18th, 2018
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.38 KB | None | 0 0
  1. <?php
  2.  
  3. $lang['config']['db']['no_connection'] = "Unable to connect to database";
  4.  
  5.  
  6. $lang['cancelAuction']['success'] = 'Removed auction successfully';
  7. $lang['cancelAuction']['error'] = 'Error removing that auction.';
  8.  
  9.  
  10. $lang['newAuction']['no_selling'] = 'You do not have permission to sell items.';
  11. $lang['newAuction']['item_not_allowed'] = ' is not allowed to be sold.';
  12. $lang['newAuction']['invalid_quantity'] = 'Quantity was not a valid number.';
  13. $lang['newAuction']['invalid_price'] = 'Price was not a valid number.';
  14. $lang['newAuction']['success'] = "You auctioned #sellQuantity# #itemFullName# for #sellPrice# each, the fee was #itemFee#.";
  15. $lang['newAuction']['error'] = "Fee cost #itemFee#, you did not have enough money.";
  16. $lang['newAuction']['quantity_no_int'] = 'Quantity was not an integer.';
  17. $lang['newAuction']['not_enough_item'] = 'You do not have enough of that item.';
  18. $lang['newAuction']['price_no_int'] = 'Price was not an integer.';
  19. $lang['newAuction']['two_prices_given'] = 'Two prices are not allowed to create an offer. Please choose only one.';
  20. $lang['newAuction']['no_owner'] = 'You are not the owner of this item.';
  21.  
  22.  
  23. $lang['purchaseItem']['no_buy'] = 'You do not have permission to buy that.';
  24. $lang['purchaseItem']['insufficient_quantity'] = "Please enter a quantity greater than 0";
  25. $lang['purchaseItem']['too_many_quantity'] = "You are attempting to purchase more than the maximum available";
  26. $lang['purchaseItem']['buy_success'] = "You purchased #buyQuantity# #auctionFullname# from #auctionOwner# for #totalPrice#.";
  27. $lang['purchaseItem']['buy_own_item'] = 'You cannnot buy your own items.';
  28. $lang['purchaseItem']['not_enough_money'] = 'You do not have enough money.';
  29.  
  30.  
  31. $lang['server_processing']['unable_to_connect'] = 'Could not open connection to server';
  32. $lang['server_processing']['unable_to_select'] = 'Could not select database ';
  33. $lang['server_processing']['form_buy'] = 'Buy';
  34. $lang['server_processing']['form_nobuy'] = "Can't Buy";
  35. $lang['server_processing']['form_cancel'] = "Cancel";
  36.  
  37.  
  38. $lang['graph']['pagetitle'] = 'Web Auction';
  39.  
  40.  
  41. $lang['index']['pagetitle'] = 'Web Auction';
  42. $lang['index']['subtitle'] = 'Current Auctions';
  43. $lang['index']['th_iteminfo'] = 'Item Info';
  44. $lang['index']['th_seller'] = 'Seller';
  45. $lang['index']['th_expires'] = 'Expires';
  46. $lang['index']['th_quantity'] = 'Quantity';
  47. $lang['index']['th_priceeach'] = 'Price (Each)';
  48. $lang['index']['th_pricetotal'] = 'Price (Total)';
  49. $lang['index']['th_marketprice'] = '% of Market Price';
  50. $lang['index']['th_buy'] = 'Buy';
  51. $lang['index']['th_cancel'] = 'Cancel';
  52. $lang['index']['msg_loading'] = 'Loading data from server';
  53.  
  54.  
  55. $lang['info']['pagetitle'] = 'Web Auction';
  56. $lang['info']['subtitle'] = 'Item Info';
  57. $lang['info']['th_item'] = 'Item';
  58. $lang['info']['th_numbersold'] = 'Number Sold';
  59. $lang['info']['th_marketprice'] = 'Market Price';
  60. $lang['info']['th_valuegraph'] = 'Value Graph';
  61. $lang['info']['btn_valuegraph'] = 'View Value Graph';
  62.  
  63.  
  64. $lang['login']['pagetitle'] = 'Web Auction';
  65. $lang['login']['subtitle'] = 'Login';
  66. $lang['login']['loginfailed'] = "Login Failed.";
  67. $lang['login']['form_username'] = 'Username';
  68. $lang['login']['form_password'] = 'Password';
  69. $lang['login']['form_submit'] = 'Submit';
  70.  
  71.  
  72. $lang['myauctions']['pagetitle'] = 'Web Auction';
  73. $lang['myauctions']['subtitle_new'] = 'Create a new auction';
  74. $lang['myauctions']['form_item'] = 'Item';
  75. $lang['myauctions']['form_infinit_msg'] = "Enter 0 as the quantity for infinite stacks (admins only)";
  76. $lang['myauctions']['form_quantity'] = 'Quantity';
  77. $lang['myauctions']['form_price'] = 'Price (Per Item)';
  78. $lang['myauctions']['form_stackprice'] = 'Price (Per Quantity)';
  79. $lang['myauctions']['form_submit'] = 'Submit';
  80. $lang['myauctions']['subtitle'] = 'My Auctions';
  81. $lang['myauctions']['th_iteminfo'] = 'Item';
  82. $lang['myauctions']['th_expires'] = 'Expires';
  83. $lang['myauctions']['th_quantity'] = 'Quantity';
  84. $lang['myauctions']['th_priceeach'] = 'Price (Each)';
  85. $lang['myauctions']['th_pricetotal'] = 'Price (Total)';
  86. $lang['myauctions']['th_marketprice'] = '% of Market Price';
  87. $lang['myauctions']['th_cancel'] = 'Cancel';
  88. $lang['myauctions']['btn_cancel'] = 'Cancel';
  89.  
  90.  
  91. $lang['myitems']['pagetitle'] = 'Web Auction';
  92. $lang['myitems']['subtitle'] = 'My Items';
  93. $lang['myitems']['not_owner'] = "You do not own that item.";
  94. $lang['myitems']['th_item'] = 'Item';
  95. $lang['myitems']['th_quantity'] = 'Quantity';
  96. $lang['myitems']['th_marketpriceeach'] = 'Market Price (Each)';
  97. $lang['myitems']['th_marketpricetotal'] = 'Market Price (Total)';
  98. $lang['myitems']['th_mailmeitem'] = 'Mail me item';
  99. $lang['myitems']['mailit'] = 'Mail It';
  100.  
  101.  
  102. $lang['playerstats']['pagetitle'] = 'Web Auction';
  103. $lang['playerstats']['subtitle'] = 'Player Stats';
  104. $lang['playerstats']['th_player'] = 'Player';
  105. $lang['playerstats']['th_itemssold'] = 'Items Sold';
  106. $lang['playerstats']['th_itembought'] = 'Item Bought';
  107. $lang['playerstats']['th_moneygained'] = 'Money Gained';
  108. $lang['playerstats']['th_moneyspent'] = 'Money Spent';
  109. $lang['playerstats']['th_totalprofit'] = 'Total Profit';
  110.  
  111.  
  112. $lang['topBoxes']['head']['name'] = 'Name';
  113. $lang['topBoxes']['head']['money'] = 'Money';
  114. $lang['topBoxes']['head']['mail'] = 'Mail';
  115. $lang['topBoxes']['head']['dateformat'] = 'jS M Y H:i:s';
  116. $lang['topBoxes']['link']['home'] = 'Home';
  117. $lang['topBoxes']['link']['myitems'] = 'My Items';
  118. $lang['topBoxes']['link']['myauctions'] = 'My Auctions';
  119. $lang['topBoxes']['link']['playerstats'] = 'Player Stats';
  120. $lang['topBoxes']['link']['iteminfo'] = 'Item Info';
  121. $lang['topBoxes']['link']['transactionlog'] = 'Transaction Log';
  122. $lang['topBoxes']['link']['logout'] = 'logout';
  123. $lang['topBoxes']['link']['help'] = '<h4>Help</h4>';
  124.  
  125.  
  126. $lang['transactionLog']['pagetitle'] = 'Web Auction';
  127. $lang['transactionLog']['subtitle_buy'] = 'My Items Bought';
  128. $lang['transactionLog']['subtitle_sold'] = 'My Items Sold';
  129. $lang['transactionLog']['th_time'] = 'Time';
  130. $lang['transactionLog']['th_item'] = 'Item';
  131. $lang['transactionLog']['th_seller'] = 'Seller';
  132. $lang['transactionLog']['th_quantity'] = 'Quantity';
  133. $lang['transactionLog']['th_priceeach'] = 'Price (Each)';
  134. $lang['transactionLog']['th_pricetotal'] = 'Price (Total)';
  135. $lang['transactionLog']['th_marketprice'] = '% of Market Price';
  136. $lang['transactionLog']['th_date'] = 'Date';
  137. $lang['transactionLog']['th_buyer'] = 'Buyer';
  138.  
  139. //common fields related to tables
  140. $lang['tables']['dateformat'] = 'jS M Y H:i:s';
  141. ?>
Add Comment
Please, Sign In to add comment