labelsbundle_it.java
来自「MyDownloader 是一款使用 http 协议(RFC 1867)用于下载」· Java 代码 · 共 54 行
JAVA
54 行
/* * Copyright 2005-2007 JavaAtWork All rights reserved. * Use is subject to license terms. */package com.javaatwork.mydownloader.language;import java.util.ListResourceBundle;/** * Class for the Italian labels. * * @author Johannes Postma */public class LabelsBundle_it extends ListResourceBundle { /** the Italian labels */ static final Object[][] contents = { {"filename", "Nome File"}, {"copy", "Copia"}, {"download", "Download"}, {"yes", "Si"}, {"yes_to_all", "Si per tutt"}, {"no", "No"}, {"file_already_exists", "Il file '<filename>' è già presente."}, {"replace_existing_file", "Desideri sostituire il file esistente:"}, {"last_modified", "Ultima modifica:"}, {"file_exists", "Il file è già presente"}, {"bytes_retrieved", "Il file è già presente:"}, {"directory_does_not_exist", "La cartella '<directory>' non esiste."}, {"downloading", "Download in corso"}, {"file_not_found", "Il file '<filename>' non può essere trovato"}, {"error_occurred_during_download", "Si è verificato un errore durante il download del file '<filename>'"}, {"permission", "Permessi '<filename>'."}, {"error_occurred", "Si è verificato un errore con il file '<filename>'."}, {"message", "Messaggio"}, {"of", "di"}, {"file", "File:"}, {"files", "Files:"}, {"progress", "Progresso:"}, {"cancel", "Cancella"}, {"size", "Dimensione:"}, {"status", "Stato:"}, }; /** * Returns an array of Italian labels * * @return An array of Italian labels */ public Object[][] getContents() { return contents; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?