labelsbundle.java

来自「MyDownloader 是一款使用 http 协议(RFC 1867)用于下载」· Java 代码 · 共 55 行

JAVA
55
字号
/* * Copyright 2005 JavaAtWork All rights reserved. * Use is subject to license terms. */package com.javaatwork.mydownloader.language;import java.util.ListResourceBundle;/** * Class for the english labels. *  * @author Johannes Postma */public class LabelsBundle extends ListResourceBundle {	/** the english labels */	static final Object[][] contents = {				{"filename", "File name"},		{"copy", "Copy"},		{"download", "Download"},		{"yes", "Yes"},		{"yes_to_all", "Yes to all"},		{"no", "No"},		{"file_already_exists", "File '<filename>' already exists."},		{"replace_existing_file", "Do you want to replace the existing file:"},		{"last_modified", "Last modified:"},		{"file_exists", "File already exists"},		{"bytes_retrieved", "Bytes retrieved:"},		{"directory_does_not_exist", "Directory '<directory>' does not exist."},		{"downloading", "Downloading"},		{"file_not_found", "File '<filename>' cannot be found"},		{"error_occurred_during_download", "Error occurred during download of file '<filename>'"},		{"permission", "Permission '<filename>'."},		{"error_occurred", "Error occurred with file '<filename>'."},		{"message", "message"},		{"of", "of"},		{"file", "File:"},		{"files", "Files:"},		{"progress", "Progress:"},		{"cancel", "Cancel"},		{"size", "Size:"},		{"status", "Status:"}	};		/**	 * Returns an array of english labels	 * 	 * @return An array of english labels	 */	public Object[][] getContents() {		return contents;	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?