labelsbundle_fr.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 French labels. *  * @author Johannes Postma */public class LabelsBundle_fr extends ListResourceBundle {	/** the French labels */	static final Object[][] contents = {		{"filename", "Nom de fichier"},		{"copy", "Copier"},		{"download", "Télécharger"},		{"yes", "Oui"},		{"yes_to_all", "Oui pour tous"},		{"no", "Non"},		{"file_already_exists", "Fichier '<filename>' existe déjà."},		{"replace_existing_file", "Voulez vous remplacer le fichier existant:"},		{"last_modified", "Dernière modification:"},		{"file_exists", "Le fichier existe déjà"},		{"bytes_retrieved", "Octets reçus:"},		{"directory_does_not_exist", "Le dossier '<directory>' n'existe pas."},		{"downloading", "En téléchargement"},		{"file_not_found", "Le fichier '<filename>' est introuvable"},		{"error_occurred_during_download", "Erreur survenue durant le téléchargement du fichier '<filename>'"},		{"permission", "Permission '<filename>'."},		{"error_occurred", "Erreur survenue pour le fichier '<filename>'."},		{"message", "Message"},		{"of", "sur"},		{"file", "Fichier:"},		{"files", "Fichiers:"},		{"progress", "Avancement:"},		{"cancel", "Annuler"},		{"size", "Taille:"},		{"status", "Statut:"}					};		/**	 * Returns an array of French labels	 * 	 * @return An array of French labels	 */	public Object[][] getContents() {		return contents;	}}

⌨️ 快捷键说明

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