All Projects → UweKeim → Zetaresourceeditor

UweKeim / Zetaresourceeditor

Licence: mit
Free multilingual, parallel .NET resource file editing

Programming Languages

language
365 projects

Projects that are alternatives of or similar to Zetaresourceeditor

Visualstudiostandalone
Make your Visual Studio Portable
Stars: ✭ 177 (-13.24%)
Mutual labels:  visual-studio
Newpipe
A libre lightweight streaming front-end for Android.
Stars: ✭ 15,786 (+7638.24%)
Mutual labels:  translation
Pothossdr
Pothos SDR windows development environment
Stars: ✭ 193 (-5.39%)
Mutual labels:  visual-studio
Improvexamarinbuildtimes
Tips and tricks on how to speed up the time it takes to compile a Xamarin app
Stars: ✭ 180 (-11.76%)
Mutual labels:  visual-studio
Hybridizer Basic Samples
Examples of C# code compiled to GPU by hybridizer
Stars: ✭ 186 (-8.82%)
Mutual labels:  visual-studio
Linguist
Easy multilingual urls and redirection support for the Laravel framework
Stars: ✭ 188 (-7.84%)
Mutual labels:  translation
Node Gettext
A JavaScript implementation of gettext, a localization framework.
Stars: ✭ 175 (-14.22%)
Mutual labels:  translation
Database
EhTagTranslation 项目的翻译数据。
Stars: ✭ 197 (-3.43%)
Mutual labels:  translation
Digital Rights
Promote digital rights in China
Stars: ✭ 186 (-8.82%)
Mutual labels:  translation
I18next Express Middleware
[deprecated] can be replaced with i18next-http-middleware
Stars: ✭ 195 (-4.41%)
Mutual labels:  translation
Metalangle
MetalANGLE: OpenGL ES to Metal API translation layer
Stars: ✭ 182 (-10.78%)
Mutual labels:  translation
Hangulize
Korean Alphabet Transcription
Stars: ✭ 184 (-9.8%)
Mutual labels:  translation
Dpp
Directly include C headers in D source code
Stars: ✭ 189 (-7.35%)
Mutual labels:  translation
Cvdrone
CV Drone (= OpenCV + AR.Drone)
Stars: ✭ 178 (-12.75%)
Mutual labels:  visual-studio
Lingvo
Lingvo
Stars: ✭ 2,361 (+1057.35%)
Mutual labels:  translation
React Translated
A dead simple way to add complex translations (i18n) in a React (DOM/Native) project 🌎🌍🌏
Stars: ✭ 176 (-13.73%)
Mutual labels:  translation
Clean Code Javascript
🛁 Адаптированные для JavaScript концепции Чистого кода
Stars: ✭ 187 (-8.33%)
Mutual labels:  translation
Pytorch Transformer
pytorch implementation of Attention is all you need
Stars: ✭ 199 (-2.45%)
Mutual labels:  translation
Bridge
♠️ C# to JavaScript compiler. Write modern mobile and web apps in C#. Run anywhere with Bridge.NET.
Stars: ✭ 2,216 (+986.27%)
Mutual labels:  visual-studio
Laravel Localization Helpers
🎌 Artisan commands to generate and update lang files automatically
Stars: ✭ 190 (-6.86%)
Mutual labels:  translation

Zeta Resource Editor

Edit your .NET resource files in parallel

Download latest binary setup package | Visit official website | Support forum

Alt text

Download latest binary setup package

(Please see the bottom of this article for the latest updates) (The project is also available at The Code Project, at CodePlex and at Google Code)

Introduction

This is a small utility application that enables you to edit string resources from multiple different resource files together inside one single data grid. It was originally developed to act as the translation tool for a CMS and a Test Management tool.

Background

When translating the resources of a .NET application into other languages, the biggest and most difficult task for me was to translate string resources:

The recommended way (at least what I know) is to create one single .RESX file for every language you want the strings to be translated to. I.e. one "Resources.resx" for neutral/English, one "Resources.de.resx" for German, one "Resources.fr.resx" for French, etc.

Since I had to duplicate the resource keys into each RESX file, I often did not manage to keep the resource keys synchronal among all RESX files.

This is where the idea for this tool came up: Take all RESX files, merge their resource keys and display the resource values side by side in one editable data grid.

How to use the tool (simple version)

1.) Create your resource files in Visual Studio .NET 2005 as you usually do

Add a resource file for each language you want to support and place them in the "Properties" folder of your project.

Keep the naming schema "Resources..resx", e.g. "Resources.fr-ch.resx" for Swiss with French language. The following screenshot is an example for English and German.

Alt text

English and German language resources

2.) Start Zeta Resource Editor and open the resource files

Next, simply start Zeta Resource Editor and open the files you want to edit in parallel.

Alt text

Opening two resource files and load them into Zeta Resource Editor

3.) Edit the resources and save them

Alt text

The main window of Zeta Resource Editor

You could either edit the cells in the grid directly by selecting and pressing F2 or, for a better overview, select a cell in the grid and then edit the details in the details view at the bottom of the window.

4.) Save and compile

Finally save the resources in Zeta Resource Editor and compile your solution inside Visual Studio .NET 2005/2008.

How to use the tool (enhanced version with projects)

Starting march 2008, I added the concept of "projects". Projects are XML files with the ".zreproj" file extension that store 1..n so called "file groups" of RESX files that you want to edit together.

The idea is that you usually have a Visual Studio .NET solution that has multiple projects with multiple RESX files. Instead of opening them one by one inside Zeta Resource Editor, you once create a project inside Zeta Resource Editor and all the resources files you want to edit.

Later you simple open the Zeta Resource Editor project and double click the individual files to edit them.

To use projects, simply select Create New Project from the Projects main menu.

Alt text

Dialog to create a new project

Once you have created a new project, it is being displayed in the main window on the left side. Right click the root node and select Add file group to project to add a new file group with multiple RESX files to the project:

Alt text

Right-clicking the project to add files

Then select the apropriate files and they will appear in the project list:

Alt text

Project list with one added file group with two individual files

Simply double click the file group to edit the files inside the grid in Zeta Resource Editor.

Epilog

Other Tools

I must admit that I am not an expert regarding translation/localization/globalization tools.

Doing lots of Internet searches, trying different tools, all of them seems to do their own kind of hand algorithms and behaviors.

But what I wanted was to do it my way, respectively the way that Visual Studio .NET 2005 does it.

So I do hope my approach isn't that naive but rather a small pragmatic tool to aid me (and hopefully others) managing the hassles of translating string resources.

If you do know other tools, preferably free ones, that do the same or even better than this one I presented you here, please post the hyperlinks below in the comments section!

Some tools and resources I found to be rather good are:

The current state of the Tool

Beside small test applications, we did not use the tool extensively.

We developed this tool for the upcoming releases of our applications Zeta Producer CMS version 11 (a windows-based Content Management System), Zeta Uploader (a tool for sending large files by e-mail) and our Test Management tool.

Although I think it is ready-to-use, the main reason why I already released it was to give other developers the chance to use it and to provide a lot of feedback to me for improving the application.

So please keep the feedback coming :-)!

Planed enhancements

  • Work on a more content-based way instead of a file-based way. E.g. allow for editing/exporting/importing all resources from all files of a project within one single grid/Excel document.
  • Add tagging to simplify the finding of resources across multiple resource files.
  • Support other resource files beside the .NET resx files.
  • Your suggestions here.

History

(Please note to also view the GitHub commit history for a full list of changes)

  • 2017-05-02 - Added merge funktionality to merge one or multiple file groups into another file group.
  • 2013-06-09 - Changed Excel reading/writing functions to use free Excel library.
  • 2013-06-07 - First release to Github. The project is also available at The Code Project, at CodePlex and at Google Code. Please note that a valid purchased license of DevExpress is required to build the tool.
  • 2012-02-22 - Updated the binary setup and the source download. Small fix to allow translation even when no project is loaded.
  • 2011-10-10 - Updated the binary setup and the source download. Fixed an issue when automatically adding resource files from a Visual Studio .NET Solution.
  • 2011-08-02 - There is now a support forum for Zeta Resource Editor.
  • 2011-06-15 - Updated the binary setup and the source download. Fixed an issue when adding new resources and letting them automatically translate. Optimized away some more pixels in the main window to have more height.
  • 2011-05-14 - Updated the binary setup and the source download. The Excel export wizard now allows to directly send exported files to one or multiple e-mail receivers. This is done through our free Zeta Uploader service.
  • 2011-03-24 - Updated the binary setup and the source download. Added missing VC 10.0 CRT DLLs to setup package. This fixes errors on some machines where the Excel export failed with SQLite-related error message.
  • 2011-03-14 - Updated the binary setup and the source download. Fixed an issue with translation through Bing Translator with unsupported languages.
  • 2011-03-06 - Updated the binary setup and the source download. Added a right-click grid context menu item to delete the contents of a row for selected language.
  • 2011-01-30 - Modified the binary setup and the source code. Added:
    • Added a replace function to find and replace texts in a grid.
    • Added project folders properties to exclude project folders and file groups from being exported/imported.
    • Improved speed of translating a large number of texts.
    • Added a "Don't translate" word list to protect words from being translated.
    • The dialog window to create new resource files now has the ability to add files for multiple languages in one operation.
    • Various bugs were fixed. Homepage erstellen
  • 2011-01-06 - Modified the binary setup and the source code. Added Danish as an additional language of the GUI.
  • 2010-02-24 - Modified the binary setup and the source code. Added support for configuring an HTTP proxy server for all outgoing HTTP requests like e.g. the translation service.
  • 2010-02-21 - Modified the binary setup and the source code. It is now possible to edit not just one file group inside the grid but also multiple file groups at once. Simply double-click on the project or a project folder in the tree. (This feature is currently in Beta stage; your feedback is very welcome!) Alt text.
  • 2010-02-14 - Modified the binary setup and the source code. Added the suggestions of this comment.
  • 2010-01-15 - Modified the binary setup and the source code. Added ability to display the comments of the first resource file in the editor grid (read and write). Activate this option in the project settings Fixed issues with automatic translations. All changes were done by user "TheMegaLoser".
  • 2010-01-14 - Updated the source download to match the latest binary setup.
  • 2010-01-04 - Modified the binary setup, enhanced the Excel export and import to make it more usable for external translators/translations. See my weblog article for details and a screenshot.
  • 2009-10-31 - Minor modifications to the binary setup. As of request, I updated the source code download. Please note that you need to have an installed license of the DevExpress WinForms components in order to successfully compile the sources.
  • 2009-08-25 - Updated the binary setup again. Rewrote the language detection routine that detects a language from a file name. Now configurable through the project settings. Added function "Create new files" to create missing resource files for a complete project (or a project folder) with just a few clicks.
  • 2009-08-08 - Updated the binary setup again. Added the long-requested (including by myself!) ability to create new files from within Zeta Resource Editor: Alt text This is done by copying from an existing file and replacing all the existing texts. Also included serveral minor bug fixes. Added the ability to show/hide the complete project tree panel (the left part of the main window) for better screen usage on smaller monitors.
  • 2009-07-12 - Updated the binary setup again. Introduced what I call "Project Folders" - virtual folders that enables you to organize larger numbers of file groups into separate units to keep the project manageable. Also added move (up/down) and drag and drop to the tree.
  • 2009-07-04 - Updated the binary setup again. Also updated the source download. Changes: Fixed reported bugs. Added first version of Microsoft Office Excel export and import (Your feedback is very welcome).
  • 2009-06-27 - Updated the binary setup and fixed several bugs reported directly to me and below here in the forum. Added keyboard shortcuts to work again. Unfortunately the previous version broke the update mechanism, so you will get an error when clicking the "Update available" button. Sorry for that, I fixed it now.
  • 2009-06-18 - Updated the binary setup. Changes:
    • This version is primarily a complete rewrite of the GUI. I hope you like it! I throw out all standard Windows Forms components and used the GUI components of DevExpress. The main reason for the rewrite was to have a strong foundation for doing more complex UI stuff (like grid filtering, exporting) in the future.
    • Changed the main window to use ribbons.
    • Added modern Windows Vista compatible icons.
    • Added a news area to the main windows. You can turn this of in the application's options dialog window.
    • Added some initial spell checking functionality (configurable in the project settings) with support of OpenOffice dictionaries.
    • Complete empty lines can now be hidden from the grid.
    • Added an option to configure the behaviour reported by "nkstr"
  • 2009-04-26 - Updated the binary setup. Changes: Integrated Google Translation API calls to automatically translate from one language to another language (See the "Edit" main menu). Also included is a general-purpose translation window. Did some rather simple, but hopefully useful introduction screencasts
  • 2009-03-31 - Alt text. Updated the binary setup again. Changes: The state of a translated file group is now shown both in the tree view as well as in the upper left corner of the editing grid.
  • 2009-02-08 - Updated the binary setup again. Changes: Adjusted the display of file groups in the left tree. Enhanced and corrected the coloring in the grid. New color gray to show completely empty rows among all languages.
  • 2009-02-08 - Updated the binary setup. Again some minor fixes in how the settings are stored. Added a German translation for the whole GUI, which is automatically chosen if you are on a German OS. Added project option for not storing empty resource strings (useful for fall back to the default language)
  • 2008-12-29 - Updated the binary setup. Some minor fixes, adjustments of the generated group names and a neat little function to import a complete folder tree with all its resource files with one single operation.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].