📄 bookstoremessages.java
字号:
package messages;import java.util.*;public class BookstoreMessages extends ListResourceBundle { static final Object[][] contents = { { "ServerError", "Your request cannot be completed. The server got the following error: " }, { "Start", "Start Shopping" }, { "Critics", "Here's what the critics say: " }, { "Price", "Our Price: " }, { "CartRemoved", "You just removed " }, { "CartCleared", "You just cleared your shopping cart!" }, { "CartContents", "Your shopping cart contains " }, { "CartItem", " item" }, { "CartItems", " items" }, { "CartAdded1", "You added " }, { "CartAdded2", " to your shopping cart." }, { "CartCheck", "Check Shopping Cart" }, { "CartAdd", "Add to Cart" }, { "By", "by" }, { "Buy", "Buy Your Books" }, { "Choose", "Please choose from our selections:" }, { "ItemQuantity", "Quantity" }, { "ItemTitle", "Title" }, { "ItemPrice", "Price" }, { "RemoveItem", "Remove Item" }, { "Subtotal", "Subtotal:" }, { "ContinueShopping", "Continue Shopping" }, { "Checkout", "Check Out" }, { "ClearCart", "Clear Cart" }, { "CartEmpty", "Your cart is empty." }, { "Amount", "Your total purchase amount is:" }, { "Purchase", "To purchase the items in your shopping cart, please provide us with the following information:" }, { "Name", "Name:" }, { "CCNumber", "Credit Card Number:" }, { "Submit", "Submit Information" }, { "Catalog", "Back to the Catalog" }, { "ThankYou", "Thank you for purchasing your books from us " }, { "OrderError", "Your order could not be completed due to insufficient inventory." }, { "ShipDate", "Your order will be shipped on " } }; public Object[][] getContents() { return contents; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -