Skip to content
Adrien Allard edited this page Jul 5, 2016 · 5 revisions

In the next version of File Converter (v1.1) there will be a localization system that will automatically translate the application depending on the language set in Windows as your default language. This language will be overridable in the application options.

You can help File Converter adding new supported languages to the application. Here is the step to follow:

  • Fork the File Converter repository in GitHub.
  • Switch to the "development" branch to have the latest version of File Converter project.
  • Go to project folder FileConverter\Application\FileConverter\Properties.
  • Duplicate the file Resources.resx and rename it Resources.{language-culture-name}.resx. You can find the list of the language culture names here: Table of Language Culture Names. For example to create the french localization resources file, name the file Resources.fr-FR.resx.
  • Edit the created file with your prefered text editor and fill all the data values.

Example: <data name="About" xml:space="preserve"> <value>A propos</value> </data>

  • Finally create a pull request in GitHub so I can integrate your contribution in the project.

If you have visual studio installed, you can directly edit the resx file in a graphical interface.

Thanks a lot for your help :) !

Clone this wiki locally