Skip to content

thesmallbang/JsonTranslationEditor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

43 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Binary for testing available in the releases section

I slapped this together after using the BabelEdit trial and wanted to keep some basic functionality. This is my first time using WPF so it is fairly ugly both code and UI

This program has no real error handling or friendly messages but should perform OK even on relatively large files.

It can load/save two formats

   {
       "your" : {
           "name" : {
               "space": "value",
               "another":"value"
           },
           "another" : "value"
       }
   }

or

   {
       "your.name.space":"value",
       "your.name.another":"value",
       "your.another":"value"
   }

screenshot-mainwindow

Hotkeys

 Open Folder (CTRL+O)
 Save (CTRL+S)
 Reload/Discard Changes (CTRL+R)
 Add Language (CTRL+L)
 Rename (F2)
 Delete (Del)
 Add Translation (CTRL+A)
 Page Forward (ALT+Right)
 Page Back (Alt+Left)