35 lines
870 B
JavaScript
35 lines
870 B
JavaScript
const en = {
|
||
message: {
|
||
askTodelete: "Are you sure to delete?",
|
||
},
|
||
content: {
|
||
blankTip: "I am Blank.",
|
||
noteTip: "Start writing something...",
|
||
deleteTip: "The note will be deleted automatically. ttl:"
|
||
},
|
||
button: {
|
||
ok: "OK",
|
||
yes: "Yes",
|
||
no: "No",
|
||
selectAll: "Select All",
|
||
copy: "Copy",
|
||
copyAll: "Copy All",
|
||
share: "Share",
|
||
close: "Close"
|
||
},
|
||
error: {
|
||
"100001": "Unknown Error!",
|
||
"100002": "Wrong Address!",
|
||
"100003": "Deleted!",
|
||
"100004": "Expired!",
|
||
"100005": "Not Published!",
|
||
"100006": "Server Unavailable!",
|
||
"100011": "Empty Note!",
|
||
"100012": "Too Large, Beyond {0}!",
|
||
"100013": "The address is used, Copy to a new address.",
|
||
"100014": "The text has been modified.",
|
||
"800001": "Repetitive Submit!",
|
||
}
|
||
};
|
||
export default en;
|