Init
This commit is contained in:
		
							
								
								
									
										44
									
								
								README.md
									
									
									
									
									
								
							
							
						
						
									
										44
									
								
								README.md
									
									
									
									
									
								
							| @@ -1,3 +1,45 @@ | ||||
| # miscJar | ||||
|  | ||||
| Ensemble de fonctions pratiques pour programme java | ||||
| Misc est un atelier pour le développement d'application Java pouvant servir à l'illustration pédagogique. | ||||
|  | ||||
|  | ||||
|  | ||||
| Objets de pratiques | ||||
|  | ||||
|   * Log : fonction de trace | ||||
|   * Config : gestion de valeurs initiales | ||||
|   * Bundle : internationalisation | ||||
|   * UpdateSender : alerte sur modification de valeur | ||||
|   * ColorCheckedLine : gestion des couleurs d'un terminal pour testes unitaires en mode texte | ||||
|  | ||||
| Fonctions récurrentes | ||||
|  | ||||
|   * Util : ensemble de fonction (souvent graphique) pour factoriser du code | ||||
|  | ||||
| Éléments graphiques | ||||
|  | ||||
|   * SpinnerSlider : couplage d'un curseur (slider) et d'un champ numérique (spinner) | ||||
|   * DatePanel : saisie de date | ||||
|   * HourPanel : saisie d'heure | ||||
|   * ImagePreview : accessoire de visualisation d'image pour dialogue de choix de fichier. | ||||
|   * TitledDialog : fenêtre avec gestion d'icône de l'application | ||||
|   * HtmlDialog : affichage d'une page HTML dans une application | ||||
|   * Guide : outil d’auto-documentation pour surlignant l'action à réaliser dans un scénario d'utilisation | ||||
|  | ||||
| Modèle MVC | ||||
|  | ||||
|   * ApplicationManager : associe la gestion de bouton dans des menus déroulant ou des boîte d'icône | ||||
|   * HelpManager : menu d'aide standard avec gestion de langue | ||||
|   * ToolBarManager : boîte d'icône détachable | ||||
|   * Controler : contrôleur du modèle MVC | ||||
|   * ProgressState : gestion de modification du modèle pour connexion d'une barre de progression | ||||
|  | ||||
| Contournement | ||||
|  | ||||
|   * XML : contournement d'un bug d'une version de Java | ||||
|  | ||||
| Réseau | ||||
|  | ||||
|   * CommandLineServer : fonctions générique d'un serveur socket en mode texte | ||||
|   * CommandLineWaiter : classe générique à spécialiser en fonction du serveur souhaité | ||||
|  | ||||
|   | ||||
							
								
								
									
										459
									
								
								ant/build.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										459
									
								
								ant/build.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,459 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <project name="Dr. F.Merciol Misc" default="compile" basedir=".."> | ||||
|  | ||||
|   <tstamp> | ||||
|     <format property="TODAY_FR" pattern="yyyyMMdd" locale="fr,FR"/> | ||||
|   </tstamp> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <description> | ||||
|     Java Practice by Dr. F. Merciol (c) 2008 | ||||
|   </description> | ||||
|   <property name="work"           location="ws"/> | ||||
|   <property name="data"           location="data"/> | ||||
|   <property name="log"            location="data/log"/> | ||||
|   <property name="java.src"       location="src/java"/> | ||||
|   <property name="java.test"      location="src/javaTest"/> | ||||
|   <property name="junit.jar"      location="import/jar/junit-4.6.jar"/> | ||||
|   <property name="result"         location="build"/> | ||||
|   <property name="result.api"     location="build/api"/> | ||||
|   <property name="result.class"   location="build/class"/> | ||||
|   <property name="result.jar"     location="build/jar"/> | ||||
|   <property name="result.miscJar" location="build/jar/misc.jar"/> | ||||
|   <property name="result.distrib" location="distrib"/> | ||||
|  | ||||
|   <path id="test.classpath"> | ||||
|     <pathelement location="${result.class}"/> | ||||
|     <pathelement path="/usr/share/java/junit4.jar:/usr/share/java/junit.jar:${java.class.path}:${result.miscJar}"/> | ||||
|     <fileset dir="${result.jar}"> | ||||
|       <include name="**/*.jar"/> | ||||
|     </fileset> | ||||
|   </path> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="1stCmd" description="Must be done first of all (create link to launch ant in workspace)"> | ||||
|     <symlink failonerror="false" link="${work}/build.xml" resource="../ant/build.xml"/> | ||||
|     <symlink failonerror="false" link="${work}/"          resource="${data}/"/> | ||||
|     <symlink failonerror="false" link="${work}/"          resource="${result.jar}/Chat.jar"/> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="cleanConfig" description="clean XML file configuration" > | ||||
|     <dirname property="pwd" file="ant" /> | ||||
|  | ||||
|     <replaceregexp byline="true"> | ||||
|       <regexp pattern="(.*)${pwd}(.*)"/> | ||||
|       <substitution expression="\1\.\2"/> | ||||
|       <fileset dir="data/config"> | ||||
| 	<include name="*.xml"/> | ||||
|       </fileset> | ||||
|     </replaceregexp> | ||||
|  | ||||
|     <replaceregexp byline="true"> | ||||
|       <regexp pattern="(.*entry key=".*Location">)[^]]*(.*)"/> | ||||
|       <substitution expression="\1[x=50,y=50\2"/> | ||||
|       <fileset dir="data/config"> | ||||
| 	<include name="*.xml"/> | ||||
|       </fileset> | ||||
|     </replaceregexp> | ||||
|  | ||||
|     <replaceregexp byline="true"> | ||||
|       <regexp pattern=".*entry key="(Language|Variant|Country)">.*"/> | ||||
|       <substitution expression=""/> | ||||
|       <fileset dir="data/config"> | ||||
| 	<include name="*.xml"/> | ||||
|       </fileset> | ||||
|     </replaceregexp> | ||||
|  | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="clean" depends="cleanConfig" description="clean up (remove classes and temporaries files)" > | ||||
|     <delete dir="${result.class}"/> | ||||
|     <delete dir="${result.api}"/> | ||||
|     <delete verbose="true"> | ||||
|       <fileset defaultexcludes="no" dir="." includes="**/*~"/> | ||||
|       <fileset defaultexcludes="no" dir="." includes="**/#*#"/> | ||||
|       <fileset defaultexcludes="no" dir="." includes="**/.#*"/> | ||||
|     </delete> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="wipe" depends="clean" description="delete all product file (keep only sources)" > | ||||
|     <delete dir="${log}"/> | ||||
|     <delete file="${work}/build.xml"/> | ||||
|     <delete file="${work}/Chat.jar"/> | ||||
|     <symlink failonerror="false" action="delete" link="${work}/data"/> | ||||
|     <delete dir="${result}"/> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="init"> | ||||
|     <!-- Create the time stamp --> | ||||
|     <tstamp/> | ||||
|     <mkdir dir="${result.api}"/> | ||||
|     <mkdir dir="${result.class}"/> | ||||
|     <copy todir="${result.class}/data/config"> | ||||
|       <fileset dir="${data}/config"> | ||||
| 	<include name="Controller*.properties"/> | ||||
| 	<include name="Help*.properties"/> | ||||
| 	<include name="Protocol*.properties"/> | ||||
| 	<include name="Proxy*.properties"/> | ||||
| 	<include name="RemoteUpdate*.properties"/> | ||||
| 	<include name="Story*.properties"/> | ||||
| 	<include name="ToolBar*.properties"/> | ||||
| 	<include name="BundleManager*.properties"/> | ||||
| 	<include name="BundleManager.xml"/> | ||||
| 	<include name="Chat*.properties"/> | ||||
| 	<include name="Chat.xml"/> | ||||
|       </fileset> | ||||
|     </copy> | ||||
|     <mkdir dir="${log}"/> | ||||
|     <mkdir dir="${result.jar}"/> | ||||
|     <mkdir dir="${result.distrib}"/> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="compile" depends="init" description="compile the source" > | ||||
|     <javac includeantruntime="false" destdir="${result.class}" deprecation="true"  debug="true" verbose="false" encoding="iso-8859-1"> | ||||
|       <compilerarg value="-Xlint" /> | ||||
|       <src path="${java.src}"/> | ||||
|       <src path="${java.test}"/> | ||||
|       <classpath> | ||||
| 	<pathelement location="${result.class}"/> | ||||
|       </classpath> | ||||
|     </javac> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="junit" depends="compile"> | ||||
|     <junit fork="yes" printsummary="no" haltonfailure="no" dir="${work}"> | ||||
|       <classpath refid="test.classpath" /> | ||||
|       <formatter type="brief" usefile="false" /> | ||||
|       <batchtest> | ||||
| 	<fileset dir="${result.class}" includes="**/*Test.class" /> | ||||
|       </batchtest> | ||||
|     </junit> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="junitGUI" depends="compile"> | ||||
|     <exec executable="junit"> | ||||
|       <env key="CLASSPATH" | ||||
| 	   value="${result.class}:/usr/share/java/junit.jar:/usr/share/java/junit4.jar:${java.class.path}"/> | ||||
|     </exec> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="test" depends="compile" description="execute test" > | ||||
|     <java classname="network.chat.LaunchChat" fork="true"> | ||||
|       <jvmarg value="-Djava.net.preferIPv4Stack=true"/> | ||||
|       <!--jvmarg value="-Djava.security.policy=grant"/--> | ||||
|       <arg value="hello"/> | ||||
|       <classpath> | ||||
| 	<pathelement location="${result.class}"/> | ||||
| 	<pathelement path="${junit.jar}:${java.class.path}"/> | ||||
|       </classpath> | ||||
|     </java> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="doc" depends="compile" description="make Application Programming Interface documentation" > | ||||
|     <javadoc | ||||
| 	destdir="${result.api}" | ||||
| 	author="true" | ||||
| 	version="true" | ||||
| 	use="true" | ||||
| 	overview="${java.src}/overview.html"> | ||||
|       <fileset dir="${java.src}" defaultexcludes="yes"> | ||||
| 	<!-- include name="com/dummy/test/**" / --> | ||||
| 	<exclude name="**/*.html"/> | ||||
| 	<exclude name="**/TODO"/> | ||||
| 	<exclude name="**/Makefile*"/> | ||||
| 	<exclude name="**/Manifest.*"/> | ||||
| 	<exclude name="**/*.[dch]*"/> | ||||
| 	<exclude name="**/*.txt"/> | ||||
| 	<exclude name="**/*Test.java"/> | ||||
|       </fileset> | ||||
|       <doctitle><![CDATA[<h1>Misc source files</h1>]]></doctitle> | ||||
|       <bottom><![CDATA[<i>Copyright © 2008 Dr. F. Merciol. Tous droits réservés.</i>]]></bottom> | ||||
|     </javadoc> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="miscJar" depends="cleanConfig,compile" description="make misc jar" > | ||||
|     <jar destfile="${result.jar}/Misc.jar" filesonly="yes" defaultexcludes="yes"> | ||||
|       <manifest> | ||||
| 	<attribute name="Built-By" value="Dr. F. Merciol"/> | ||||
| 	<attribute name="Created-By" value="Dr. F. Merciol"/> | ||||
| 	<attribute name="Main-Class" value="misc.Controller"/> | ||||
| 	<attribute name="Class-Path" value="Misc.jar"/> | ||||
|       </manifest> | ||||
|       <fileset dir="${result.class}" > | ||||
| 	<include name="misc/*.class" /> | ||||
|       </fileset> | ||||
|       <fileset dir="." > | ||||
| 	<include name="data/images/button/Abort.png" /> | ||||
| 	<include name="data/images/button/About.png" /> | ||||
| 	<include name="data/images/button/BugReport.png" /> | ||||
| 	<include name="data/images/button/Details.png" /> | ||||
| 	<include name="data/images/button/Down.png" /> | ||||
| 	<include name="data/images/button/DownloadOff.png" /> | ||||
| 	<include name="data/images/button/DownloadOn.png" /> | ||||
| 	<include name="data/images/button/Empty.png" /> | ||||
| 	<include name="data/images/button/ForcePack.png" /> | ||||
| 	<include name="data/images/button/JConsoleOff.png" /> | ||||
| 	<include name="data/images/button/JConsoleOn.png" /> | ||||
| 	<include name="data/images/button/Licence.png" /> | ||||
| 	<include name="data/images/button/LocalRemoveOff.png" /> | ||||
| 	<include name="data/images/button/LocalRemoveOn.png" /> | ||||
| 	<include name="data/images/button/Locale.png" /> | ||||
| 	<include name="data/images/button/Online.png" /> | ||||
| 	<include name="data/images/button/Open.png" /> | ||||
| 	<include name="data/images/button/PackBug*.png" /> | ||||
| 	<include name="data/images/button/Quit.png" /> | ||||
| 	<include name="data/images/button/Redo.png" /> | ||||
| 	<include name="data/images/button/RemoteRemoveOff.png" /> | ||||
| 	<include name="data/images/button/RemoteRemoveOn.png" /> | ||||
| 	<include name="data/images/button/Save*.png" /> | ||||
| 	<include name="data/images/button/SetProxy.png" /> | ||||
| 	<include name="data/images/button/ToolBarProfil.png" /> | ||||
| 	<include name="data/images/button/Undo.png" /> | ||||
| 	<include name="data/images/button/Up.png" /> | ||||
| 	<include name="data/images/button/Update.png" /> | ||||
| 	<include name="data/images/button/UploadOff.png" /> | ||||
| 	<include name="data/images/button/UploadOn.png" /> | ||||
| 	<include name="data/images/button/develop.png" /> | ||||
| 	<include name="data/images/flags/*.png" /> | ||||
| 	<include name="data/images/misc.png" /> | ||||
| 	<include name="data/config/Controller*.properties"/> | ||||
| 	<include name="data/config/Help*.properties" /> | ||||
| 	<include name="data/config/Proxy*.properties" /> | ||||
| 	<include name="data/config/RemoteUpdate*.properties" /> | ||||
| 	<include name="data/config/Story*.properties" /> | ||||
| 	<include name="data/config/ToolBar*.properties" /> | ||||
| 	<include name="data/config/Misc.xml"/> | ||||
| 	<include name="data/texts/*Misc*.html"/> | ||||
|       </fileset> | ||||
|     </jar> | ||||
|   </target> | ||||
|  | ||||
|   <target name="signMiscJar" depends="miscJar" description="sign misc jar" > | ||||
|     <signjar jar="${result.jar}/Misc.jar" alias="Dr. F. Merciol" storepass="felixfelix"/> | ||||
|   </target> | ||||
|  | ||||
|   <target name="runMiscJar" depends="miscJar" description="execute misc jar" > | ||||
|     <java jar="${result.jar}/Misc.jar" fork="true"> | ||||
|       <classpath> | ||||
| 	<pathelement path="${java.class.path}"/> | ||||
|       </classpath> | ||||
|     </java> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="bundleJar" depends="compile,miscJar" description="make bundle jar" > | ||||
|     <jar destfile="${result.jar}/Bundle.jar" filesonly="yes" defaultexcludes="yes"> | ||||
|       <manifest> | ||||
| 	<attribute name="Built-By" value="Dr. F. Merciol"/> | ||||
| 	<attribute name="Created-By" value="Dr. F. Merciol"/> | ||||
| 	<attribute name="Main-Class" value="tool.LaunchBundleManager"/> | ||||
| 	<attribute name="Class-Path" value="Misc.jar"/> | ||||
|       </manifest> | ||||
|       <fileset dir="${result.class}" > | ||||
| 	<include name="tool/**/*.class" /> | ||||
|       </fileset> | ||||
|       <fileset dir="." > | ||||
| 	<include name="data/images/**/*.png" /> | ||||
| 	<include name="data/config/Controller*.properties" /> | ||||
| 	<include name="data/config/Help*.properties" /> | ||||
| 	<include name="data/config/Proxy*.properties" /> | ||||
| 	<include name="data/config/RemoteUpdate*.properties" /> | ||||
| 	<include name="data/config/Story*.properties" /> | ||||
| 	<include name="data/config/ToolBar*.properties" /> | ||||
| 	<include name="data/config/BundleManager*.properties" /> | ||||
| 	<include name="data/config/BundleManager.xml" /> | ||||
|       </fileset> | ||||
|     </jar> | ||||
|   </target> | ||||
|  | ||||
|   <target name="signBundleJar" depends="bundleJar" description="sign bundle jar" > | ||||
|     <signjar jar="${result.jar}/Bundle.jar" alias="Dr. F. Merciol" storepass="felix"/> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="runBundleJar" depends="bundleJar" description="execute bundle jar" > | ||||
|     <java jar="${result.jar}/Bundle.jar" fork="true"> | ||||
|       <classpath> | ||||
| 	<pathelement path="${java.class.path}"/> | ||||
|       </classpath> | ||||
|     </java> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="chatJar" depends="compile,miscJar" description="make chat jar" > | ||||
|     <jar destfile="${result.jar}/Chat.jar" filesonly="yes" defaultexcludes="yes"> | ||||
|       <manifest> | ||||
| 	<attribute name="Built-By" value="Dr. F. Merciol"/> | ||||
| 	<attribute name="Created-By" value="Dr. F. Merciol"/> | ||||
| 	<attribute name="Main-Class" value="network.chat.LaunchChat"/> | ||||
| 	<attribute name="Class-Path" value="Misc.jar"/> | ||||
|       </manifest> | ||||
|       <fileset dir="${result.class}" > | ||||
| 	<include name="network/*.class" /> | ||||
| 	<include name="network/chat/*.class" /> | ||||
| 	<include name="network/login/*.class" /> | ||||
|       </fileset> | ||||
|       <fileset dir="." > | ||||
| 	<include name="data/images/**/*.png" /> | ||||
| 	<include name="data/config/Controller*.properties" /> | ||||
| 	<include name="data/config/Help*.properties" /> | ||||
| 	<include name="data/config/Proxy*.properties" /> | ||||
| 	<include name="data/config/RemoteUpdate*.properties" /> | ||||
| 	<include name="data/config/Story*.properties" /> | ||||
| 	<include name="data/config/ToolBar*.properties" /> | ||||
| 	<include name="data/config/Protocol*.properties" /> | ||||
| 	<include name="data/config/Login*.properties" /> | ||||
| 	<include name="data/config/Chat*.properties" /> | ||||
| 	<include name="data/config/Chat.xml" /> | ||||
|       </fileset> | ||||
|     </jar> | ||||
|   </target> | ||||
|  | ||||
|   <target name="signChatJar" depends="chatJar" description="sign chat jar" > | ||||
|     <signjar jar="${result.jar}/Chat.jar" alias="Dr. F. Merciol" storepass="felix"/> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="runChatJar" depends="chatJar" description="execute chat jar" > | ||||
|     <java jar="${result.jar}/Chat.jar" fork="true"> | ||||
|       <!--jvmarg value="-Djava.net.preferIPv4Stack=true"/--> | ||||
|       <classpath> | ||||
| 	<pathelement path="${java.class.path}"/> | ||||
|       </classpath> | ||||
|     </java> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="launchChat" depends="chatJar" description="execute char jar" > | ||||
|     <java classname="network.chat.LaunchChat" fork="true"> | ||||
|       <!--jvmarg value="-Djava.net.preferIPv4Stack=true"/--> | ||||
|       <classpath> | ||||
| 	<pathelement path="${java.class.path}"/> | ||||
| 	<pathelement path="${result.class}"/> | ||||
|       </classpath> | ||||
|     </java> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="loginJar" depends="compile,miscJar" description="make login jar" > | ||||
|     <jar destfile="${result.jar}/Login.jar" filesonly="yes" defaultexcludes="yes"> | ||||
|       <manifest> | ||||
| 	<attribute name="Built-By" value="Dr. F. Merciol"/> | ||||
| 	<attribute name="Created-By" value="Dr. F. Merciol"/> | ||||
| 	<attribute name="Main-Class" value="network.login.LaunchLogin"/> | ||||
| 	<attribute name="Class-Path" value="Misc.jar"/> | ||||
|       </manifest> | ||||
|       <fileset dir="${result.class}" > | ||||
| 	<include name="network/*.class" /> | ||||
| 	<include name="network/login/*.class" /> | ||||
|       </fileset> | ||||
|       <fileset dir="." > | ||||
| 	<include name="data/images/**/*.png" /> | ||||
| 	<include name="data/config/Controller*.properties" /> | ||||
| 	<include name="data/config/Help*.properties" /> | ||||
| 	<include name="data/config/Proxy*.properties" /> | ||||
| 	<include name="data/config/RemoteUpdate*.properties" /> | ||||
| 	<include name="data/config/Story*.properties" /> | ||||
| 	<include name="data/config/ToolBar*.properties" /> | ||||
| 	<include name="data/config/Protocol*.properties" /> | ||||
| 	<include name="data/config/Login*.properties" /> | ||||
| 	<include name="data/config/Login.xml" /> | ||||
|       </fileset> | ||||
|     </jar> | ||||
|   </target> | ||||
|  | ||||
|   <target name="signLoginJar" depends="loginJar" description="sign login jar" > | ||||
|     <signjar jar="${result.jar}/Login.jar" alias="Dr. F. Merciol" storepass="felix"/> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="runLoginJar" depends="loginJar" description="execute login jar" > | ||||
|     <java jar="${result.jar}/Login.jar" fork="true"> | ||||
|       <!--jvmarg value="-Djava.net.preferIPv4Stack=true"/--> | ||||
|       <classpath> | ||||
| 	<pathelement path="${java.class.path}"/> | ||||
|       </classpath> | ||||
|     </java> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="launchLogin" depends="loginJar" description="execute login jar" > | ||||
|     <java classname="network.login.LaunchLogin" fork="true"> | ||||
|       <!--jvmarg value="-Djava.net.preferIPv4Stack=true"/--> | ||||
|       <classpath> | ||||
| 	<pathelement path="${java.class.path}"/> | ||||
| 	<pathelement path="${result.class}"/> | ||||
|       </classpath> | ||||
|     </java> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="srcBzip2" depends="srcZip" description="create distribution" > | ||||
|     <tar tarfile="${result.distrib}/francoisSrc.tar.bz2" compression="bzip2"> | ||||
|       <zipfileset src="${result.distrib}/francoisSrc.zip"/> | ||||
|     </tar> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="srcZip" depends="bundleJar,loginJar,chatJar,miscJar,cleanConfig" description="create distribution" > | ||||
|     <zip destfile="${result.distrib}/francoisSrc.zip"> | ||||
|       <zipfileset prefix="francoisSrc/" dir="."> | ||||
| 	<include name="ant/build.xml"/> | ||||
| 	<include name="build/jar/Bundle.jar"/> | ||||
| 	<include name="data/config/*.properties"/> | ||||
| 	<include name="data/config/*.xml"/> | ||||
| 	<include name="data/images/button/*.png"/> | ||||
| 	<include name="data/texts/*.html"/> | ||||
| 	<include name="import/jar/*.jar"/> | ||||
| 	<include name="readme/Readme.*"/> | ||||
| 	<include name="src/java/network/**/*.java"/> | ||||
| 	<include name="src/java/misc/*.java"/> | ||||
|       </zipfileset> | ||||
|       <zipfileset prefix="francoisSrc/" dir="." filemode="755"> | ||||
| 	<include name="ws/*.sh"/> | ||||
|       </zipfileset> | ||||
|     </zip> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="exeBzip2" depends="exeZip" description="create distribution" > | ||||
|     <tar tarfile="${result.distrib}/francoisExe.tar.bz2" compression="bzip2"> | ||||
|       <zipfileset src="${result.distrib}/francoisExe.zip"/> | ||||
|     </tar> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="exeZip" depends="bundleJar,loginJar,chatJar,miscJar,cleanConfig" description="create distribution" > | ||||
|     <zip destfile="${result.distrib}/francoisExe.zip"> | ||||
|       <zipfileset prefix="francois/" dir="${result.jar}"> | ||||
| 	<include name="Bundle.jar"/> | ||||
| 	<include name="Login.jar"/> | ||||
| 	<include name="Chat.jar"/> | ||||
| 	<include name="Misc.jar"/> | ||||
|       </zipfileset> | ||||
|       <zipfileset prefix="francois/" dir="import/jar/"> | ||||
|       </zipfileset> | ||||
|     </zip> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
|   <target name="miscZip" depends="cleanConfig,miscJar" description="create distribution" > | ||||
|     <zip destfile="${result.distrib}/${TODAY_FR}-Misc.zip"> | ||||
|       <zipfileset prefix="" dir="${result.jar}"> | ||||
| 	<include name="Misc.jar"/> | ||||
|       </zipfileset> | ||||
|     </zip> | ||||
|   </target> | ||||
|  | ||||
|   <!-- ======================================== --> | ||||
| </project> | ||||
							
								
								
									
										38
									
								
								data/config/BundleManager.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								data/config/BundleManager.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,38 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||||
| <properties> | ||||
| <comment>This file is automaticaly generated by BundleManager application at 6:58 PM on Aug 17, 2018.</comment> | ||||
| <entry key="FileOrder">0</entry> | ||||
| <entry key="HelpOrder">2</entry> | ||||
| <entry key="HelpPlace">North</entry> | ||||
| <entry key="BundleDir">/mnt/f/home/felix/Travail/IUT/M3101/data/config</entry> | ||||
| <entry key="BundleManagerToolBarUndocked">false</entry> | ||||
| <entry key="HelpUndocked">false</entry> | ||||
|  | ||||
| <entry key="BundleLocation">[x=50,y=50]</entry> | ||||
| <entry key="BundleIcon">data/images/bundle/bundle.png</entry> | ||||
| <entry key="FileUndocked">false</entry> | ||||
| <entry key="LicenceChecked">false</entry> | ||||
| <entry key="BundleOrder">1</entry> | ||||
| <entry key="HelpChecked">true</entry> | ||||
| <entry key="FrameLocation">[x=50,y=50]</entry> | ||||
| <entry key="JConsoleChecked">false</entry> | ||||
| <entry key="SourceIteratorDir">/mnt/sata/stock/nomade/IRISA-UBS/ImageByTrees/src/java/imageByTrees/app</entry> | ||||
| <entry key="PackBugChecked">true</entry> | ||||
| <entry key="JConsoleLocation">[x=50,y=50]</entry> | ||||
| <entry key="FilePlace">North</entry> | ||||
| <entry key="AboutLocation">[x=50,y=50]</entry> | ||||
| <entry key="BundleManagerToolBarPlace">North</entry> | ||||
|  | ||||
| <entry key="HelpLocation">[x=50,y=50]</entry> | ||||
| <entry key="dumpDir">data/log</entry> | ||||
| <entry key="BundleManagerToolBarChecked">true</entry> | ||||
| <entry key="LicenceLocation">[x=50,y=50]</entry> | ||||
| <entry key="FileLocation">[x=50,y=50]</entry> | ||||
|  | ||||
| <entry key="BundleUndocked">false</entry> | ||||
| <entry key="BundlePlace">South</entry> | ||||
| <entry key="FileChecked">true</entry> | ||||
| <entry key="BundleChecked">true</entry> | ||||
| <entry key="AboutChecked">false</entry> | ||||
| </properties> | ||||
							
								
								
									
										44
									
								
								data/config/BundleManager_en_US.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								data/config/BundleManager_en_US.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,44 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Thu Jun 30 17:35:12 CEST 2011 | ||||
| ActionAddKey=add Key | ||||
| ActionAddLocale=add Locale | ||||
| ActionChangeLocale=Change Locale | ||||
| ActionEmpty=New | ||||
| ActionFile=File | ||||
| ActionInit=Select sources \u2026 | ||||
| ActionMerge=Merge | ||||
| ActionNext=Next String | ||||
| ActionOpen=Open \u2026 | ||||
| ActionQuit=Quit | ||||
| ActionRemoveKey=remove Key | ||||
| ActionRemoveLocale=remove Locale | ||||
| ActionRenameLocale=rename Locale | ||||
| ActionSave=Save | ||||
| ActionSaveAs=Save As \u2026 | ||||
| AddKeyTitle=Add new key | ||||
| AddLocaleTitle=New locale name\: | ||||
| BundleEditorTitle=\ Bundle Editor ({0})  | ||||
| BundleNotSavedTitle=Bundle not saved | ||||
| BundleTitle=\ Bundle Editor | ||||
| ExceptionCantLoad=Bundle {0} can''t be loaded\! | ||||
| ExceptionCantSave=Bundle {0} can''t be saved\! | ||||
| ExceptionDuplicatedKey=Duplicated key {0}\! | ||||
| ExceptionDuplicatedLocale=Duplicated locale {0}\! | ||||
| HeaderBundleFile=This file is generated automatically by BundleManager | ||||
| LabelBundelPropertieFile=bundle properties file | ||||
| LabelFileName=File name | ||||
| LabelKeys=keys | ||||
| LabelLine=Line | ||||
| LabelLineNumber=Line Number | ||||
| LabelNewKey=New key name\: | ||||
| LabelRealyDiscardBundle=Do you want to discard current bundle ? | ||||
| LabelSaveBundle=Do you want to save bundle ? | ||||
| MessageAddLocale=\ Add Locale  | ||||
| MessageNoKey=You must have to select one key line\! | ||||
| MessageNoLocale=You must have to select one locale column\! | ||||
| MessageNoSourceDir=You must choose a directory source before (use Select Sources ...)\! | ||||
| MessageRenameLocale=\ Rename Locale  | ||||
| NoKeyTitle=Can''t determine key | ||||
| NoLocaleTitle=Can''t determine locale | ||||
| NoSourceTitle=No source | ||||
| RenameLocaleTitle=Rename locale | ||||
							
								
								
									
										44
									
								
								data/config/BundleManager_fr_FR.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								data/config/BundleManager_fr_FR.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,44 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Thu Jun 30 17:35:12 CEST 2011 | ||||
| ActionAddKey=Ajouter R\u00E9f\u00E9rence | ||||
| ActionAddLocale=Ajouter Langue | ||||
| ActionChangeLocale=Changer de Langue | ||||
| ActionEmpty=Nouveau | ||||
| ActionFile=Fichiers | ||||
| ActionInit=Choisir Sources \u2026 | ||||
| ActionMerge=Fusione | ||||
| ActionNext=Cha\u00EEne Suivante | ||||
| ActionOpen=Ouvrir \u2026 | ||||
| ActionQuit=Quitter | ||||
| ActionRemoveKey=Supprimer R\u00E9f\u00E9rence | ||||
| ActionRemoveLocale=Supprimer Langue | ||||
| ActionRenameLocale=Renomer Langue | ||||
| ActionSave=Sauver | ||||
| ActionSaveAs=Sauver sous \u2026 | ||||
| AddKeyTitle=AJouter une nouvelle r\u00E9f\u00E9rence | ||||
| AddLocaleTitle=Nouvelle langue \: | ||||
| BundleEditorTitle=\ Editeur de Baluchon (\= propri\u00E9t\u00E9s du programme) ({0})  | ||||
| BundleNotSavedTitle=Baluchon non sauv\u00E9 | ||||
| BundleTitle=\ Editeur de baluchon  | ||||
| ExceptionCantLoad=Impossible de charger {0} \! | ||||
| ExceptionCantSave=Impossible de sauver {0} \! | ||||
| ExceptionDuplicatedKey=R\u00E9f\u00E9rence {0} en double \! | ||||
| ExceptionDuplicatedLocale=Localisation {0} en double \! | ||||
| HeaderBundleFile=Produit automatiquement par BundleManager | ||||
| LabelBundelPropertieFile=Baluchon de propri\u00E9t\u00E9s (Langue) | ||||
| LabelFileName=Nom du fichier | ||||
| LabelKeys=R\u00E9f\u00E9rences | ||||
| LabelLine=Ligne | ||||
| LabelLineNumber=Num\u00E9ro de Ligne | ||||
| LabelNewKey=Nouvelle r\u00E9f\u00E9rences \: | ||||
| LabelRealyDiscardBundle=Voulez-vous vraiment abandonner les modifications ? | ||||
| LabelSaveBundle=Vouslez-vous sauver le baluchon ? | ||||
| MessageAddLocale=\ Ajout d''une langue  | ||||
| MessageNoKey=Vous devez selectionner une ligne de key \! | ||||
| MessageNoLocale=Vous devez selectionner une colonne de langue \! | ||||
| MessageNoSourceDir=Vous devez d''abord choisir un r\u00E9pertoire de source en utilisant "Choisir Sources ..." \! | ||||
| MessageRenameLocale=\ Changement de langue | ||||
| NoKeyTitle=Impossible de trouver la r\u00E9f\u00E9rence | ||||
| NoLocaleTitle=Impossible de trouver la langue | ||||
| NoSourceTitle=Pas de source | ||||
| RenameLocaleTitle=Renommer une langue | ||||
							
								
								
									
										60
									
								
								data/config/Chat.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										60
									
								
								data/config/Chat.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,60 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||||
| <properties> | ||||
| <comment>This file is automaticaly generated by Chat application at 8:59 AM on Aug 17, 2018.</comment> | ||||
| <entry key="groupMember-size">1</entry> | ||||
| <entry key="hostProtocol-0001">projets.iut-info-vannes.net</entry> | ||||
| <entry key="hostProtocol-0002">127.0.0.10</entry> | ||||
| <entry key="hostProtocol-size">3</entry> | ||||
| <entry key="pseudo-max">10</entry> | ||||
| <entry key="ChatIcon">data/images/chat/chat.png</entry> | ||||
| <entry key="SetProxyChecked">false</entry> | ||||
| <entry key="uriProtocol">/</entry> | ||||
| <entry key="hostProxy-0001">squidva.univ-ubs.fr</entry> | ||||
| <entry key="ManageExtentionChecked">true</entry> | ||||
| <entry key="pseudo">felix</entry> | ||||
| <entry key="uriProtocol-max">10</entry> | ||||
| <entry key="FrameLocation">[x=50,y=50]</entry> | ||||
| <entry key="portProtocol-0001">80</entry> | ||||
| <entry key="PackBugChecked">false</entry> | ||||
| <entry key="JConsoleLocation">[x=50,y=50]</entry> | ||||
| <entry key="groupAdmin-size">1</entry> | ||||
|  | ||||
| <entry key="groupName"></entry> | ||||
| <entry key="dumpDir">data/log</entry> | ||||
| <entry key="ChatDir">/home/felix</entry> | ||||
| <entry key="LicenceLocation">[x=50,y=50]</entry> | ||||
| <entry key="hostProxy-size">2</entry> | ||||
| <entry key="portProtocol-max">10</entry> | ||||
|  | ||||
| <entry key="groupName-max">10</entry> | ||||
| <entry key="groupName-size">1</entry> | ||||
| <entry key="ChatColumns">64</entry> | ||||
| <entry key="AboutChecked">false</entry> | ||||
| <entry key="portProtocol">8080</entry> | ||||
| <entry key="portProxy">8080</entry> | ||||
| <entry key="portProtocol-size">2</entry> | ||||
| <entry key="hostProxy">localhost</entry> | ||||
| <entry key="pseudo-size">2</entry> | ||||
| <entry key="hostProtocol-max">10</entry> | ||||
| <entry key="groupAdmin"></entry> | ||||
|  | ||||
| <entry key="logPath">data/log</entry> | ||||
| <entry key="groupMember"></entry> | ||||
| <entry key="groupAdmin-max">10</entry> | ||||
| <entry key="hostProtocol">127.0.0.1</entry> | ||||
| <entry key="portProxy-size">3</entry> | ||||
| <entry key="LicenceChecked">false</entry> | ||||
| <entry key="JConsoleChecked">false</entry> | ||||
| <entry key="AboutLocation">[x=50,y=50]</entry> | ||||
| <entry key="pseudo-0001">isa</entry> | ||||
| <entry key="uriProtocol-size">2</entry> | ||||
| <entry key="chatLogin">inconnu_2212</entry> | ||||
| <entry key="ProtocolType">SetDodwan</entry> | ||||
| <entry key="ChatRows">18</entry> | ||||
| <entry key="portProxy-0002">9090</entry> | ||||
| <entry key="groupMember-max">10</entry> | ||||
| <entry key="hostProxy-max">10</entry> | ||||
| <entry key="portProxy-0001">3128</entry> | ||||
| <entry key="portProxy-max">10</entry> | ||||
| </properties> | ||||
							
								
								
									
										1
									
								
								data/config/Chat_en_AU.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_en_AU.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Chat_en_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_en_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Chat_en_GB.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_en_GB.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Chat_en_IE.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_en_IE.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Chat_en_IN.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_en_IN.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Chat_en_MT.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_en_MT.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Chat_en_NZ.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_en_NZ.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Chat_en_PH.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_en_PH.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Chat_en_SG.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_en_SG.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_en_US.properties | ||||
							
								
								
									
										12
									
								
								data/config/Chat_en_US.properties
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										12
									
								
								data/config/Chat_en_US.properties
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,12 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Thu Jun 30 17:41:47 CEST 2011 | ||||
| ActionClear=Clear | ||||
| ActionManageExtention=Managed extention file | ||||
| ActionPseudo=Pseudonyme | ||||
| ChangePseudoTitle=\ Change login  | ||||
| ChatNotSavedTitle=\ Chat not saved  | ||||
| ChatTitle=\ Chat ({0})  | ||||
| LabelChatFilter=Chat text (.chat) | ||||
| LabelNewPseudo=New login | ||||
| MessageRealyClearChat=Do you realy want to clear Chat? | ||||
| MessageSaveChat=Do you want to save chat? | ||||
							
								
								
									
										1
									
								
								data/config/Chat_en_ZA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_en_ZA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Chat_fr_BE.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_fr_BE.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_fr_FR.properties | ||||
							
								
								
									
										1
									
								
								data/config/Chat_fr_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_fr_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_fr_FR.properties | ||||
							
								
								
									
										1
									
								
								data/config/Chat_fr_CH.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_fr_CH.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_fr_FR.properties | ||||
							
								
								
									
										12
									
								
								data/config/Chat_fr_FR.properties
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										12
									
								
								data/config/Chat_fr_FR.properties
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,12 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Thu Jun 30 17:41:47 CEST 2011 | ||||
| ActionClear=Effacer | ||||
| ActionManageExtention=G\u00E9rer l''extension de fichier | ||||
| ActionPseudo=Pseudonyme | ||||
| ChangePseudoTitle=\ Changer de pseudo  | ||||
| ChatNotSavedTitle=\ Clavardage non sauv\u00E9  | ||||
| ChatTitle=\ Clavardage ({0})  | ||||
| LabelChatFilter=Clavardage (.chat) | ||||
| LabelNewPseudo=Nouveau pseudo | ||||
| MessageRealyClearChat=Voulez-vous vraiment oublier ce clavardage ? | ||||
| MessageSaveChat=Vouvez-vous sauvegarder ce clavardage ? | ||||
							
								
								
									
										1
									
								
								data/config/Chat_fr_LU.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Chat_fr_LU.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Chat_fr_FR.properties | ||||
							
								
								
									
										10
									
								
								data/config/Controller_br_FR_breton.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								data/config/Controller_br_FR_breton.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Oct 03 19:34:22 CEST 2015 | ||||
| ActionSave=Enrolla\u00F1\u2026 | ||||
| ActionEmpty=Nevez | ||||
| FileTitle=\ Fichenn  | ||||
| ActionLoadMessage=Karga\u00F1 ar gemenn\u2026 | ||||
| ActionSaveAll=Enrolla\u00F1 holl\u2026 | ||||
| ActionQuit=Kuitaat | ||||
| ActionSaveAs=Enrolla\u00F1 dindan\u2026 | ||||
| ActionOpen=Digeri\u00F1\u2026 | ||||
							
								
								
									
										10
									
								
								data/config/Controller_br_FR_gallo.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								data/config/Controller_br_FR_gallo.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Oct 03 19:34:22 CEST 2015 | ||||
| ActionSave=Garder\u2026 | ||||
| ActionEmpty=Nouviao | ||||
| FileTitle=\ Fichier  | ||||
| ActionLoadMessage=Charjer le messaije\u2026 | ||||
| ActionQuit=Qhiter | ||||
| ActionSaveAll=Garder tout | ||||
| ActionSaveAs=Garder sou\u2026 | ||||
| ActionOpen=Ouvri\u2026 | ||||
							
								
								
									
										10
									
								
								data/config/Controller_en_US.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								data/config/Controller_en_US.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Oct 03 19:34:22 CEST 2015 | ||||
| ActionSave=Save\u2026 | ||||
| ActionEmpty=Empty | ||||
| ActionLoadMessage=Load message\u2026 | ||||
| FileTitle=\ File  | ||||
| ActionQuit=Exit | ||||
| ActionSaveAll=Save all | ||||
| ActionSaveAs=Save as\u2026 | ||||
| ActionOpen=Open\u2026 | ||||
							
								
								
									
										10
									
								
								data/config/Controller_es_ES.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								data/config/Controller_es_ES.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Oct 03 19:34:22 CEST 2015 | ||||
| ActionEmpty=Nuevo | ||||
| ActionLoadMessage=Carga el mensaje\u2026 | ||||
| ActionOpen=Abrir\u2026 | ||||
| ActionQuit=Dejar | ||||
| ActionSave=Salveguardar\u2026 | ||||
| ActionSaveAll=Salveguardar todo | ||||
| ActionSaveAs=Salveguardar como\u2026 | ||||
| FileTitle=\ Archivo  | ||||
							
								
								
									
										10
									
								
								data/config/Controller_fr_FR.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								data/config/Controller_fr_FR.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,10 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Oct 03 19:34:22 CEST 2015 | ||||
| ActionSave=Sauver\u2026 | ||||
| ActionEmpty=Nouveau | ||||
| ActionLoadMessage=Charge le message\u2026 | ||||
| FileTitle=\ Fichier  | ||||
| ActionQuit=Quitter | ||||
| ActionSaveAll=Sauver tout | ||||
| ActionSaveAs=Sauver sous\u2026 | ||||
| ActionOpen=Ouvrir\u2026 | ||||
							
								
								
									
										18
									
								
								data/config/Help_br_FR_breton.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								data/config/Help_br_FR_breton.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Oct 03 19:40:37 CEST 2015 | ||||
| AboutTitle=\ Diwar-benn  | ||||
| ActionAbout=Diwar-benn\u2026 | ||||
| ActionBugReport=Digontammadur\u2026 | ||||
| ActionClear=FR Effacer | ||||
| ActionForcePack=FR Ajuste la fen\u00EAtre | ||||
| ActionJConsole=FR Console | ||||
| ActionLicence=Aotre | ||||
| ActionLocale=Yezh | ||||
| ChangeLocaleTitle=\ Che\u00F1chamant yezh  | ||||
| DumpTitle=\ Choaz ur fichenn  roudo\u00F9  | ||||
| HelpTitle=\ Sikour  | ||||
| JConsoleTitle=FR Console Java | ||||
| LabelDumpFilter=Fichenn roud (.log) | ||||
| LicenceTitle=\ Aotre  | ||||
| LocalizedTitle=\ Etrebroadel  | ||||
| MessageChooseLocale=Choaz ur yezh | ||||
							
								
								
									
										18
									
								
								data/config/Help_br_FR_gallo.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								data/config/Help_br_FR_gallo.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Tue Oct 13 20:07:38 CEST 2015 | ||||
| AboutTitle=\ Entour du lojici\u00EB ; raport ao...  | ||||
| ActionAbout=Entour\u2026 | ||||
| ActionBugReport=D\u00E9pou\u00E9zoner\u2026 | ||||
| ActionClear=FR Effacer | ||||
| ActionForcePack=FR Ajuste la fen\u00EAtre | ||||
| ActionJConsole=FR Console | ||||
| ActionLicence=Licence | ||||
| ActionLocale=Langaije | ||||
| ChangeLocaleTitle=\ Chanjer de langue  | ||||
| DumpTitle=\ chou\u00E9zi un fichier de routes  | ||||
| HelpTitle=\ A\u00EFde  | ||||
| JConsoleTitle=FR Console Java | ||||
| LabelDumpFilter=Fichier de route (.log) | ||||
| LicenceTitle=\ Licence  | ||||
| LocalizedTitle=\ Empllat  | ||||
| MessageChooseLocale=Chou\u00E9zi une langue | ||||
							
								
								
									
										1
									
								
								data/config/Help_en_AU.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_en_AU.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Help_en_BG.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_en_BG.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Help_en_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_en_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Help_en_GB.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_en_GB.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Help_en_IE.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_en_IE.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Help_en_IN.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_en_IN.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Help_en_MT.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_en_MT.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Help_en_NZ.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_en_NZ.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Help_en_PH.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_en_PH.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Help_en_SG.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_en_SG.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_en_US.properties | ||||
							
								
								
									
										19
									
								
								data/config/Help_en_US.properties
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										19
									
								
								data/config/Help_en_US.properties
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Jun 25 19:24:13 CEST 2011 | ||||
| #ActionPackBug=Bug: Window.pack | ||||
| AboutTitle=\ About  | ||||
| ActionAbout=About\u2026 | ||||
| ActionBugReport=Bug repport\u2026 | ||||
| ActionClear=Clear | ||||
| ActionForcePack=Adjust window | ||||
| ActionJConsole=Console | ||||
| ActionLicence=Licence | ||||
| ActionLocale=Locale | ||||
| ChangeLocaleTitle=\ Change local  | ||||
| DumpTitle=\ Dump file chossen  | ||||
| HelpTitle=\ Help  | ||||
| JConsoleTitle=Java Console | ||||
| LabelDumpFilter=Log file (.log) | ||||
| LicenceTitle=\ Licence  | ||||
| LocalizedTitle= Localized label  | ||||
| MessageChooseLocale=Choose new locale | ||||
							
								
								
									
										1
									
								
								data/config/Help_en_ZA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_en_ZA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_en_US.properties | ||||
							
								
								
									
										18
									
								
								data/config/Help_es_ES.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								data/config/Help_es_ES.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,18 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sun Feb 04 15:57:59 CET 2018 | ||||
| LocalizedTitle=\ Internacionalizaci\u00F3n  | ||||
| ActionAbout=A prop\u00F3sito de\u2026 | ||||
| ActionLicence=Licencia | ||||
| JConsoleTitle=Consola Java | ||||
| ActionClear=Borrar | ||||
| MessageChooseLocale=Selecciona unidioma | ||||
| ActionLocale=Idioma | ||||
| ChangeLocaleTitle=\ Cambio de idioma  | ||||
| LabelDumpFilter=Archivo Log (.log) | ||||
| HelpTitle=\ Ayuda  | ||||
| DumpTitle=\ Elecci\u00F3n de un archivo dump  | ||||
| LicenceTitle=\ Licencia  | ||||
| ActionJConsole=Consola | ||||
| AboutTitle=\ A prop\u00F3sito de  | ||||
| ActionBugReport=Depuraci\u00F3n\u2026 | ||||
| ActionForcePack=Ajusta la ventana | ||||
							
								
								
									
										1
									
								
								data/config/Help_fr_BE.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_fr_BE.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_fr_FR.properties | ||||
							
								
								
									
										1
									
								
								data/config/Help_fr_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_fr_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_fr_FR.properties | ||||
							
								
								
									
										1
									
								
								data/config/Help_fr_CH.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_fr_CH.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_fr_FR.properties | ||||
							
								
								
									
										19
									
								
								data/config/Help_fr_FR.properties
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										19
									
								
								data/config/Help_fr_FR.properties
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,19 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Jun 25 19:24:13 CEST 2011 | ||||
| #ActionPackBug=Anomalie : Window.pack | ||||
| AboutTitle=\ A propos  | ||||
| ActionAbout=A propos\u2026 | ||||
| ActionBugReport=D\u00E9verminage\u2026 | ||||
| ActionClear=Effacer | ||||
| ActionForcePack=Ajuste la fen\u00EAtre | ||||
| ActionJConsole=Console | ||||
| ActionLicence=Licence | ||||
| ActionLocale=Langage | ||||
| ChangeLocaleTitle=\ Changement de langue | ||||
| DumpTitle=\ Choix d''un fichier de traces  | ||||
| HelpTitle=\ Aide  | ||||
| JConsoleTitle=Console Java | ||||
| LabelDumpFilter=Fichier de trace (.log) | ||||
| LicenceTitle=\ Licence  | ||||
| LocalizedTitle=\ Internationalisation  | ||||
| MessageChooseLocale=Choisissez une langue | ||||
							
								
								
									
										1
									
								
								data/config/Help_fr_LU.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Help_fr_LU.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Help_fr_FR.properties | ||||
							
								
								
									
										69
									
								
								data/config/Login.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										69
									
								
								data/config/Login.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,69 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||||
| <properties> | ||||
| <comment>This file is automaticaly generated by Login application at 8:54 AM on Aug 17, 2018.</comment> | ||||
| <entry key="groupMember-size">1</entry> | ||||
| <entry key="FileOrder">0</entry> | ||||
| <entry key="HelpOrder">3</entry> | ||||
| <entry key="hostProtocol-0001">127.0.0.10</entry> | ||||
| <entry key="LoginIcon">data/images/login/login.png</entry> | ||||
| <entry key="hostProtocol-size">2</entry> | ||||
| <entry key="NetworkLocation">[x=50,y=50]</entry> | ||||
| <entry key="pseudo-max">10</entry> | ||||
| <entry key="SetProxyChecked">false</entry> | ||||
| <entry key="ConnectionChecked">true</entry> | ||||
| <entry key="pseudo">felix</entry> | ||||
| <entry key="uriProtocol-max">10</entry> | ||||
| <entry key="HelpChecked">true</entry> | ||||
| <entry key="FrameLocation">[x=50,y=50]</entry> | ||||
| <entry key="PackBugChecked">false</entry> | ||||
| <entry key="JConsoleLocation">[x=50,y=50]</entry> | ||||
| <entry key="ConnectionUndocked">false</entry> | ||||
| <entry key="groupAdmin-size">1</entry> | ||||
|  | ||||
| <entry key="groupName"></entry> | ||||
| <entry key="dumpDir">data/log</entry> | ||||
| <entry key="LicenceLocation">[x=50,y=50]</entry> | ||||
| <entry key="hostProxy-size">1</entry> | ||||
| <entry key="portProtocol-max">10</entry> | ||||
|  | ||||
| <entry key="groupName-max">10</entry> | ||||
| <entry key="groupName-size">1</entry> | ||||
| <entry key="FileChecked">true</entry> | ||||
| <entry key="AboutChecked">false</entry> | ||||
| <entry key="ConnectionOrder">1</entry> | ||||
| <entry key="NetworkChecked">true</entry> | ||||
| <entry key="portProtocol">80</entry> | ||||
| <entry key="portProxy">8080</entry> | ||||
| <entry key="portProtocol-size">1</entry> | ||||
| <entry key="HelpPlace">North</entry> | ||||
| <entry key="uriProtocol-0001">/</entry> | ||||
| <entry key="hostProxy">localhost</entry> | ||||
| <entry key="pseudo-size">1</entry> | ||||
| <entry key="hostProtocol-max">10</entry> | ||||
| <entry key="HelpUndocked">false</entry> | ||||
| <entry key="NetworkPlace">North</entry> | ||||
| <entry key="groupAdmin"></entry> | ||||
|  | ||||
| <entry key="logPath">data/log</entry> | ||||
| <entry key="groupMember"></entry> | ||||
| <entry key="groupAdmin-max">10</entry> | ||||
| <entry key="hostProtocol">projets.iut-info-vannes.net</entry> | ||||
| <entry key="FileUndocked">false</entry> | ||||
| <entry key="portProxy-size">1</entry> | ||||
| <entry key="NetworkOrder">2</entry> | ||||
| <entry key="LicenceChecked">false</entry> | ||||
| <entry key="JConsoleChecked">false</entry> | ||||
| <entry key="FilePlace">North</entry> | ||||
| <entry key="AboutLocation">[x=50,y=50]</entry> | ||||
| <entry key="uriProtocol-size">2</entry> | ||||
| <entry key="HelpLocation">[x=50,y=50]</entry> | ||||
| <entry key="ConnectionPlace">North</entry> | ||||
| <entry key="ProtocolType">SetClient</entry> | ||||
| <entry key="FileLocation">[x=50,y=50]</entry> | ||||
| <entry key="groupMember-max">10</entry> | ||||
| <entry key="hostProxy-max">10</entry> | ||||
| <entry key="portProxy-max">10</entry> | ||||
| <entry key="ConnectionLocation">[x=50,y=50]</entry> | ||||
| <entry key="NetworkUndocked">false</entry> | ||||
| </properties> | ||||
							
								
								
									
										38
									
								
								data/config/Login_en_US.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								data/config/Login_en_US.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,38 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Thu Jun 30 17:50:09 CEST 2011 | ||||
| ActionAddAdmin=Add administrator | ||||
| ActionAddMember=Add member | ||||
| #ActionConnect=Connect | ||||
| ActionCreateGroup=Create group | ||||
| #ActionDisconnect=Disconnect | ||||
| ActionEditGroup=Edit group | ||||
| ActionEditLogin=Edit profile | ||||
| ActionJoinGroup=Join group | ||||
| ActionLeftGroup=Left group | ||||
| ActionLog=Log | ||||
| ActionRemoveAdmin=Remove administrator | ||||
| ActionRemoveGroup=Remove group | ||||
| ActionRemoveMember=Remove member | ||||
| ActionUnlog=Unlog | ||||
| GroupTitle=\ Group  | ||||
| LabelConfirmPasswd=Confirm password\:  | ||||
| LabelCreatedAt=Created at\:  | ||||
| LabelEmail=Email\:  | ||||
| LabelGroup=Group\:  | ||||
| LabelGroupName=Group name\:  | ||||
| LabelJoinGroup=Choose a group to join\:  | ||||
| LabelLogged=Logged\:  | ||||
| LabelLogin=Login\:  | ||||
| LabelNewPasswd=New password\:  | ||||
| LabelOldPasswd=Old password\:  | ||||
| LabelPassword=Password\:  | ||||
| LabelState=State\:  | ||||
| LabelTry=Try n\u00B0\:  | ||||
| LabelUpdatedAt=Updated at\:  | ||||
| LabelUpdatedBy=By\:  | ||||
| LabelUpdatedByIP=Created by (IP@)\:  | ||||
| LoginTitle=\ Login ({0})  | ||||
| ConnectionTitle=\ Connection  | ||||
| ManageGroupTitle=\ Manage Group  | ||||
| ManageLoginTitle=Manage profile | ||||
| anonymous=anonymous | ||||
							
								
								
									
										38
									
								
								data/config/Login_fr_FR.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								data/config/Login_fr_FR.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,38 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Thu Jun 30 17:50:09 CEST 2011 | ||||
| #ActionConnect=Connecter | ||||
| #ActionDisconnect=D\u00E9connecter | ||||
| ActionAddAdmin=Ajoute un administrateur | ||||
| ActionAddMember=Ajoute un membre | ||||
| ActionCreateGroup=Cr\u00E9er un nouveau groupe | ||||
| ActionEditGroup=Modifie un group | ||||
| ActionEditLogin=Modifie le profil | ||||
| ActionJoinGroup=Rejoindre un groupe | ||||
| ActionLeftGroup=Quitter un groupe | ||||
| ActionLog=Indetification | ||||
| ActionRemoveAdmin=Retire un administrateur | ||||
| ActionRemoveGroup=supprime un groupe | ||||
| ActionRemoveMember=Retire un membre | ||||
| ActionUnlog=Retrai d''identit\u00E9 | ||||
| ConnectionTitle=\ Connexion  | ||||
| GroupTitle=\ Groupe  | ||||
| LabelConfirmPasswd=V\u00E9rification du mot de passe \:  | ||||
| LabelCreatedAt=Cr\u00E9\u00E9 le \:  | ||||
| LabelEmail=Mel \:  | ||||
| LabelGroup=Groupe \:  | ||||
| LabelGroupName=Nom du groupe \:  | ||||
| LabelJoinGroup=Choisissez un groupe \u00E0 rejoindre \:  | ||||
| LabelLogged=Connect\u00E9 \:  | ||||
| LabelLogin=Pseudonyme \:  | ||||
| LabelNewPasswd=Nouveau mot de passe \:  | ||||
| LabelOldPasswd=Ancien mot de passe \:  | ||||
| LabelPassword=Mot de passe \:  | ||||
| LabelState=Etat \:  | ||||
| LabelTry=Essai n\u00B0 \:  | ||||
| LabelUpdatedAt=Mise \u00E0 jour le \:  | ||||
| LabelUpdatedBy=Par \:  | ||||
| LabelUpdatedByIP=Cr\u00E9\u00E9 par (@ IP) \:  | ||||
| LoginTitle=\ Connexion ({0})  | ||||
| ManageGroupTitle=\ Gestion des groupes  | ||||
| ManageLoginTitle=Gestion du profil | ||||
| anonymous=inconnu | ||||
							
								
								
									
										17
									
								
								data/config/Misc.xml
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								data/config/Misc.xml
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,17 @@ | ||||
| <?xml version="1.0" encoding="UTF-8" standalone="no"?> | ||||
| <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> | ||||
| <properties> | ||||
| <comment>This file is automaticaly generated by Misc application at 10:48 AM on Jan 28, 2021.</comment> | ||||
|  | ||||
| <entry key="LicenceLocation">[x=50,y=50]</entry> | ||||
| <entry key="JConsoleLocation">[x=50,y=50]</entry> | ||||
| <entry key="AboutLocation">[x=50,y=50]</entry> | ||||
| <entry key="LicenceChecked">false</entry> | ||||
| <entry key="AboutChecked">false</entry> | ||||
| <entry key="JConsoleChecked">false</entry> | ||||
| <entry key="FrameLocation">[x=50,y=50]</entry> | ||||
| <entry key="Variant"/> | ||||
|  | ||||
| <entry key="MiscIcon">data/images/misc.png</entry> | ||||
| <entry key="PackBugChecked">false</entry> | ||||
| </properties> | ||||
							
								
								
									
										11
									
								
								data/config/Protocol_en_US.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								data/config/Protocol_en_US.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| ActionLinkType=Link network | ||||
| ActionPublishDodwan=Publish | ||||
| ActionSetClient=Client | ||||
| ActionSetDodwan=Dodwan | ||||
| ActionSetProxy=Proxy | ||||
| ActionSetServer=Server | ||||
| ActionUnsetProtocol=None | ||||
| LabelAvailableNetworkCard=Your network cards\:  | ||||
| LabelConnectionType=What kind of connexion do you want? | ||||
| LinkTypeTitle=\ Connection type manager  | ||||
| NetworkTitle=\ Network  | ||||
							
								
								
									
										11
									
								
								data/config/Protocol_fr_FR.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								data/config/Protocol_fr_FR.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,11 @@ | ||||
| ActionLinkType=Relier le r\u00E9seau | ||||
| ActionPublishDodwan=Publier | ||||
| ActionSetClient=Client | ||||
| ActionSetDodwan=Dodwan | ||||
| ActionSetProxy=Mandataire | ||||
| ActionSetServer=Serveur | ||||
| ActionUnsetProtocol=Aucun | ||||
| LabelAvailableNetworkCard=Vos cartes r\u00E9seau \:  | ||||
| LabelConnectionType=Quel type de connexion souhaitez-vous ? | ||||
| LinkTypeTitle=\ Gestionnaire du type de connexion  | ||||
| NetworkTitle=\ R\u00E9seau  | ||||
							
								
								
									
										7
									
								
								data/config/Proxy_br_FR_breton.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								data/config/Proxy_br_FR_breton.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,7 @@ | ||||
| ActionSetProxy=FR Configuration r\u00E9seau\u2026 | ||||
| ProxyTitle=FR Configuration R\u00e9seau (Proxy) | ||||
| LabelHost=FR Serveur du mandataire \:  | ||||
| LabelPort=FR Port du mandataire \:  | ||||
| ActionNoProxy=FR Ne pas utiliser de Mandataire | ||||
| ActionSystemConfigProxy=FR Utiliser la configuration Java du mandataire | ||||
| ActionManualConfigProxy=FR D\u00E9finir manuellement la configuration du mandataire | ||||
							
								
								
									
										7
									
								
								data/config/Proxy_br_FR_gallo.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								data/config/Proxy_br_FR_gallo.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,7 @@ | ||||
| ActionSetProxy=FR Configuration r\u00E9seau\u2026 | ||||
| ProxyTitle=FR Configuration R\u00e9seau (Proxy) | ||||
| LabelHost=FR Serveur du mandataire \:  | ||||
| LabelPort=FR Port du mandataire \:  | ||||
| ActionNoProxy=FR Ne pas utiliser de Mandataire | ||||
| ActionSystemConfigProxy=FR Utiliser la configuration Java du mandataire | ||||
| ActionManualConfigProxy=FR D\u00E9finir manuellement la configuration du mandataire | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_en_AU.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_en_AU.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_en_BG.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_en_BG.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_en_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_en_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_en_GB.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_en_GB.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_en_IE.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_en_IE.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_en_IN.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_en_IN.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_en_MT.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_en_MT.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_en_NZ.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_en_NZ.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_en_PH.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_en_PH.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_en_SG.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_en_SG.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_en_US.properties | ||||
							
								
								
									
										7
									
								
								data/config/Proxy_en_US.properties
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										7
									
								
								data/config/Proxy_en_US.properties
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,7 @@ | ||||
| ActionSetProxy=Network configuration | ||||
| ProxyTitle=Network configuration | ||||
| LabelHost=Host\:  | ||||
| LabelPort=Port\:  | ||||
| ActionNoProxy=Use no proxy | ||||
| ActionSystemConfigProxy=Use Java VM proxy configuration | ||||
| ActionManualConfigProxy=Manual proxy definition | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_en_ZA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_en_ZA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_en_US.properties | ||||
							
								
								
									
										9
									
								
								data/config/Proxy_es_ES.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								data/config/Proxy_es_ES.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,9 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sun Feb 04 16:05:53 CET 2018 | ||||
| ActionNoProxy=No utilizar proxy | ||||
| ActionSetProxy=Configuraci\u00F3n de red | ||||
| LabelHost=Servidor proxy \:  | ||||
| ProxyTitle=CConfiguraci\u00F3n de red (Proxy) | ||||
| ActionSystemConfigProxy=Utilizar la configuraci\u00F3n Java VM del proxy | ||||
| ActionManualConfigProxy=Especificar manualmente las opciones del proxy | ||||
| LabelPort=Puerto de proxy \:  | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_fr_BE.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_fr_BE.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_fr_FR.properties | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_fr_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_fr_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_fr_FR.properties | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_fr_CH.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_fr_CH.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_fr_FR.properties | ||||
							
								
								
									
										7
									
								
								data/config/Proxy_fr_FR.properties
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										7
									
								
								data/config/Proxy_fr_FR.properties
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,7 @@ | ||||
| ActionSetProxy=Configuration r\u00E9seau\u2026 | ||||
| ProxyTitle=Configuration R\u00e9seau (Proxy) | ||||
| LabelHost=Serveur du mandataire \:  | ||||
| LabelPort=Port du mandataire \:  | ||||
| ActionNoProxy=Ne pas utiliser de Mandataire | ||||
| ActionSystemConfigProxy=Utiliser la configuration Java du mandataire | ||||
| ActionManualConfigProxy=D\u00E9finir manuellement la configuration du mandataire | ||||
							
								
								
									
										1
									
								
								data/config/Proxy_fr_LU.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Proxy_fr_LU.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Proxy_fr_FR.properties | ||||
							
								
								
									
										36
									
								
								data/config/RemoteUpdate_br_FR_breton.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										36
									
								
								data/config/RemoteUpdate_br_FR_breton.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,36 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Feb 03 16:17:07 CET 2018 | ||||
| ActionUpload=FR T\u00E9l\u00E9versement | ||||
| LabelLocalDate=FR Date local | ||||
| EnumCheckPeriodMonth=Miz | ||||
| EnumCheckPeriodYear=Bloavezh | ||||
| LabelRemove=FR Supprim\u00E9 | ||||
| ActionOnline=FR Mise en ligne\u2026 | ||||
| ActionLocalRemove=FR Nettoyer fichiers locaux | ||||
| MessageUploadCompleted=FR {0,choice,0\# Aucun t\u00E9l\u00E9verssement|0< {0} fichiers t\u00E9l\u00E9vers\u00E9s.} | ||||
| LabelLocal=FR Local | ||||
| EnumCheckPeriodWeek=Sizhun | ||||
| LabelFileName=FR Fichier | ||||
| EnumCheckPeriodDay=Deiz | ||||
| UpdateSoftTitle=FR Mise \u00E0 jour | ||||
| LabelRemoteSize=FR Taille distante | ||||
| MessageDownloadInfo={0} \: {1,choice,0\# (FR pas de serveur)|0< '{2,choice,0\# 0 fichenn|1\# 1 fichenn|1< {2,number,integer} fichenno\u00F9}' ({3}o)} | ||||
| LabelRemote=FR Distant | ||||
| ActionDetails=FR D\u00E9tails\u2026 | ||||
| DownloadTitle=\ Pellgarga\u00F1  bremanaduro\u00F9  | ||||
| MessageUpload=FR T\u00E9l\u00E9versement | ||||
| LabelDownload=FR T\u00E9l\u00E9charg\u00E9 | ||||
| ActionUpdate=Bremanadur\u2026 | ||||
| MessageDownloadCompleted={0,choice,0\# ebet pellgarga\u00F1|0< {0} fichenno\u00F9 pellgarget. Kuitaat hag adla\u00F1sa\u00F1 ar poellad.} | ||||
| MessageLocalRemove=FR Nettoyage local | ||||
| LabelRemoteDate=FR Date distante | ||||
| ActionDownload=FR T\u00E9l\u00E9chargement | ||||
| MessageUpdateSoft=FR Relancer la nouvelle version | ||||
| EnumCheckPeriodNoCheck=Gwech ebet | ||||
| LabelLocalSize=FR Taille local | ||||
| DetailsTitle=FR D\u00E9tails | ||||
| ActionRemoteRemove=FR Nettoyer fichiers distants | ||||
| LabelCheckingPeriod=Gwiria\u00F1 bremanadurio\u00F9 \: | ||||
| MessageDownload=Pellgarga\u00F1 | ||||
| UploadTitle=FR T\u00E9l\u00E9versement  | ||||
| LabelUpload=FR T\u00E9l\u00E9vers\u00E9 | ||||
							
								
								
									
										35
									
								
								data/config/RemoteUpdate_br_FR_gallo.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								data/config/RemoteUpdate_br_FR_gallo.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,35 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Feb 03 16:17:07 CET 2018 | ||||
| ActionUpload=FR T\u00E9l\u00E9versement | ||||
| LabelLocalDate=FR Date local | ||||
| EnumCheckPeriodMonth=Mou\u00E9z | ||||
| EnumCheckPeriodYear=An\u00E9e | ||||
| LabelRemove=FR Supprim\u00E9 | ||||
| ActionOnline=FR Mise en ligne\u2026 | ||||
| ActionLocalRemove=FR Nettoyer fichiers locaux | ||||
| MessageUploadCompleted=FR {0,choice,0\# Aucun t\u00E9l\u00E9verssement|0< {0} fichiers t\u00E9l\u00E9vers\u00E9s.} | ||||
| LabelLocal=FR Local | ||||
| EnumCheckPeriodWeek=Smaine | ||||
| LabelFileName=FR Fichier | ||||
| EnumCheckPeriodDay=Jou | ||||
| UpdateSoftTitle=FR Mise \u00E0 jour | ||||
| LabelRemoteSize=FR Taille distante | ||||
| MessageDownloadInfo=FR {0} \: {1,choice,0\# pas de serveur|0< '{2,choice,0\# pas de fichier|1\# 1 fichier|1< {2,number,integer} fichiers}' ({3}o) | ||||
| LabelRemote=FR Distant | ||||
| DownloadTitle=\ Telecharjer les abuteries  | ||||
| MessageUpload=FR T\u00E9l\u00E9versement | ||||
| MessageDownloadCompleted=FR {0,choice,0\# Aucun t\u00E9l\u00E9chargement|0< {0} fichiers t\u00E9l\u00E9charg\u00E9s.\n Vous devez quitter et relancer le logiciel.} | ||||
| LabelDownload=FR T\u00E9l\u00E9charg\u00E9 | ||||
| ActionUpdate=Abuter\u2026 | ||||
| MessageLocalRemove=FR Nettoyage local | ||||
| LabelRemoteDate=FR Date distante | ||||
| ActionDownload=FR T\u00E9l\u00E9chargement | ||||
| MessageUpdateSoft=FR Relancer la nouvelle version | ||||
| EnumCheckPeriodNoCheck=Pas jam\u00E9s | ||||
| LabelLocalSize=FR Taille local | ||||
| DetailsTitle=FR D\u00E9tails | ||||
| ActionRemoteRemove=FR Nettoyer fichiers distants | ||||
| LabelCheckingPeriod=Ergarder \u00E9s abuteries \: | ||||
| UploadTitle=FR T\u00E9l\u00E9versement  | ||||
| MessageDownload=T\u00E9l\u00E9charjer | ||||
| LabelUpload=FR T\u00E9l\u00E9vers\u00E9 | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_en_AU.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_en_AU.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_en_BG.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_en_BG.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_en_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_en_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_en_GB.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_en_GB.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_en_IE.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_en_IE.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_en_IN.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_en_IN.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_en_MT.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_en_MT.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_en_NZ.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_en_NZ.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_en_PH.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_en_PH.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_en_SG.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_en_SG.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_en_US.properties | ||||
							
								
								
									
										35
									
								
								data/config/RemoteUpdate_en_US.properties
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										35
									
								
								data/config/RemoteUpdate_en_US.properties
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,35 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Feb 03 16:17:07 CET 2018 | ||||
| ActionUpload=Upload | ||||
| LabelLocalDate=Local date | ||||
| LabelRemove=Removed | ||||
| EnumCheckPeriodMonth=Month | ||||
| EnumCheckPeriodYear=Year | ||||
| ActionOnline=Online\u2026 | ||||
| ActionLocalRemove=Clean local files | ||||
| MessageUploadCompleted={0,choice,0\# No upload|0< {0} files to upload}. | ||||
| LabelLocal=Local | ||||
| EnumCheckPeriodWeek=Week | ||||
| LabelFileName=File | ||||
| EnumCheckPeriodDay=Day | ||||
| UpdateSoftTitle=Update soft needed | ||||
| LabelRemoteSize=Remote size | ||||
| MessageDownloadInfo={0}\: {1,choice,0\#Server not responding|0< '{2,choice,0\# no file|1\# 1 file|1< {2,number,integer} files}' ({3}B)} | ||||
| LabelRemote=Remote | ||||
| ActionDetails=Details\u2026 | ||||
| DownloadTitle=Download update  | ||||
| MessageUpload=Upload | ||||
| MessageDownloadCompleted={0,choice,0\# No upload|0< {0} files uploaded.} | ||||
| ActionUpdate=Update\u2026 | ||||
| LabelDownload=Downloaded | ||||
| LabelRemoteDate=Remote date | ||||
| ActionDownload=Download | ||||
| MessageUpdateSoft=Restart now | ||||
| LabelLocalSize=Local size | ||||
| DetailsTitle=Details | ||||
| EnumCheckPeriodNoCheck=Never | ||||
| ActionRemoteRemove=Clean remote files | ||||
| LabelCheckingPeriod=Cheking update\:  | ||||
| UploadTitle=\ Upload  | ||||
| MessageDownload=Download | ||||
| LabelUpload=Uploaded | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_en_ZA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_en_ZA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_en_US.properties | ||||
							
								
								
									
										36
									
								
								data/config/RemoteUpdate_es_ES.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										36
									
								
								data/config/RemoteUpdate_es_ES.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,36 @@ | ||||
| !#Produit automatiquement par BundleManager | ||||
| #Sun Feb 04 16:11:51 CET 2018 | ||||
| ActionUpload=Cargar | ||||
| LabelLocalDate=Data local | ||||
| LabelRemove=Borrado | ||||
| EnumCheckPeriodMonth=Mes | ||||
| EnumCheckPeriodYear=A\u00F1o | ||||
| ActionOnline=Puesta en l\u00EDnea\u2026 | ||||
| ActionLocalRemove=Limpiar los archives locales | ||||
| MessageUploadCompleted={0,choice,0\# Ningunacarga|0< {0} archivos cargados} | ||||
| LabelLocal=Local | ||||
| EnumCheckPeriodWeek=Semana | ||||
| LabelFileName=Archivo | ||||
| EnumCheckPeriodDay=D\u00EDa | ||||
| UpdateSoftTitle=UpdateSoftTitle | ||||
| LabelRemoteSize=Tama\u00F1o Remoto | ||||
| MessageDownloadInfo={0}\: {1,choice,0\#Server not responding|0< '{2,choice,0\# no file|1\# 1 file|1< {2,number,integer} files}' ({3}B)} | ||||
| LabelRemote=Remoto | ||||
| ActionDetails=Detalles\u2026 | ||||
| DownloadTitle=Descarga de las actualizaciones  | ||||
| MessageUpload=Carga | ||||
| MessageDownloadCompleted={0,choice,0\# No upload|0< {0} files uploaded.} | ||||
| ActionUpdate=Actualizaci\u00F3n\u2026 | ||||
| LabelDownload=Descargado | ||||
| MessageLocalRemove=MessageLocalRemove | ||||
| LabelRemoteDate=Data Remoto | ||||
| ActionDownload=Descarga | ||||
| MessageUpdateSoft=MessageUpdateSoft | ||||
| LabelLocalSize=Tama\u00F1o local | ||||
| DetailsTitle=Detalles | ||||
| EnumCheckPeriodNoCheck=Nunca | ||||
| ActionRemoteRemove=Limpiar los archivos remotos | ||||
| LabelCheckingPeriod=Verificaci\u00F3n de las actualizaciones \:  | ||||
| UploadTitle=Carga  | ||||
| MessageDownload=Descarga | ||||
| LabelUpload=Cargado | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_fr_BE.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_fr_BE.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_fr_FR.properties | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_fr_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_fr_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_fr_FR.properties | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_fr_CH.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_fr_CH.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_fr_FR.properties | ||||
							
								
								
									
										36
									
								
								data/config/RemoteUpdate_fr_FR.properties
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										36
									
								
								data/config/RemoteUpdate_fr_FR.properties
									
									
									
									
									
										Executable file
									
								
							| @@ -0,0 +1,36 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Feb 03 16:17:07 CET 2018 | ||||
| ActionUpload=T\u00E9l\u00E9versement | ||||
| LabelLocalDate=Date local | ||||
| LabelRemove=Supprim\u00E9 | ||||
| EnumCheckPeriodMonth=Mois | ||||
| EnumCheckPeriodYear=Ann\u00E9e | ||||
| ActionOnline=Mise en ligne\u2026 | ||||
| ActionLocalRemove=Nettoyer fichiers locaux | ||||
| MessageUploadCompleted={0,choice,0\# Aucun t\u00E9l\u00E9verssement|0< {0} fichiers t\u00E9l\u00E9vers\u00E9s}. | ||||
| LabelLocal=Local | ||||
| EnumCheckPeriodWeek=Semaine | ||||
| LabelFileName=Fichier | ||||
| EnumCheckPeriodDay=Jour | ||||
| UpdateSoftTitle=Mise \u00E0 jour | ||||
| LabelRemoteSize=Taille distante | ||||
| MessageDownloadInfo={0} \: {1,choice,0\# Le serveur ne r\u00E9pond pas|0< '{2,choice,0\# pas de fichier|1\# 1 fichier|1< {2,number,integer} fichiers}' ({3}o)} | ||||
| LabelRemote=Distant | ||||
| ActionDetails=D\u00E9tails\u2026 | ||||
| DownloadTitle=T\u00E9l\u00E9chargement des mises \u00E0 jour   | ||||
| MessageUpload=T\u00E9l\u00E9versement | ||||
| MessageDownloadCompleted={0,choice,0\# Aucun t\u00E9l\u00E9chargement|0< {0} fichiers t\u00E9l\u00E9charg\u00E9s.\n Vous devez quitter et relancer le logiciel.} | ||||
| ActionUpdate=Mise \u00E0 jour\u2026 | ||||
| LabelDownload=T\u00E9l\u00E9charg\u00E9 | ||||
| MessageLocalRemove=Nettoyage local | ||||
| LabelRemoteDate=Date distante | ||||
| ActionDownload=T\u00E9l\u00E9chargement | ||||
| MessageUpdateSoft=Relancer la nouvelle version ? \n (si ce message revient lancez UpdatedAdecWatt.jar) | ||||
| LabelLocalSize=Taille local | ||||
| DetailsTitle=D\u00E9tails | ||||
| EnumCheckPeriodNoCheck=Jamais | ||||
| ActionRemoteRemove=Nettoyer fichiers distants | ||||
| LabelCheckingPeriod=V\u00E9rification des mises \u00E0 jour \:  | ||||
| UploadTitle=\ T\u00E9l\u00E9versement  | ||||
| MessageDownload=T\u00E9l\u00E9chargement | ||||
| LabelUpload=T\u00E9l\u00E9vers\u00E9 | ||||
							
								
								
									
										1
									
								
								data/config/RemoteUpdate_fr_LU.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/RemoteUpdate_fr_LU.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| RemoteUpdate_fr_FR.properties | ||||
							
								
								
									
										4
									
								
								data/config/Story_br_FR_breton.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								data/config/Story_br_FR_breton.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Oct 03 19:46:00 CEST 2015 | ||||
| ActionUndo=Dispenn | ||||
| ActionRedo=Adkregi\u00F1 | ||||
							
								
								
									
										4
									
								
								data/config/Story_br_FR_gallo.properties
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								data/config/Story_br_FR_gallo.properties
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,4 @@ | ||||
| #Produit automatiquement par BundleManager | ||||
| #Sat Oct 03 19:46:00 CEST 2015 | ||||
| ActionUndo=D\u00E9marrer | ||||
| ActionRedo=Erf\u00E9re | ||||
							
								
								
									
										1
									
								
								data/config/Story_en_AU.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Story_en_AU.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Story_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Story_en_BG.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Story_en_BG.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Story_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Story_en_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Story_en_CA.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Story_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Story_en_GB.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Story_en_GB.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Story_en_US.properties | ||||
							
								
								
									
										1
									
								
								data/config/Story_en_IE.properties
									
									
									
									
									
										Symbolic link
									
								
							
							
						
						
									
										1
									
								
								data/config/Story_en_IE.properties
									
									
									
									
									
										Symbolic link
									
								
							| @@ -0,0 +1 @@ | ||||
| Story_en_US.properties | ||||
Some files were not shown because too many files have changed in this diff Show More
		Reference in New Issue
	
	Block a user