📄 labelsbundle_it_it.java
字号:
/* * 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_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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -