I have an excel list (excel 2003) where the user enters translations for tokens. It has 3 columns (key, value, language). It can be something like a key: Login.Header, value: "Login to the site" Language: ru.
This works pretty well. I use this file to create specific images on a website that uses a lot of graphics for texts. It's good that users can enter text without installing new software, editing is enjoyable, and the resulting file can be easily read using my python script.
You might think that I don't like it: if 2 users are editing a file and have a lot of changes than merging, it becomes a nightmare.
Is there an editing solution that is as good as Excel in the areas that I described, but can be easily combined?
EDIT
The answers so far have explained how the source system can help in such a situation. But I already have SVN.
Question about file format. There are file formats that can easily be combined with a client, such as winmerge (for example, source code for Java or C # backend classes), and there are others that are difficult to merge (xml, files generated by code generation). xls - excel 2003 files may be different, but it still does not have a good format for merging.
I think there is another application (something like working with apples, open office, excel 2010 ..) that allows me to edit the table, but can be easily combined.
source share