On Monday, October 27, 2014 9:43:37 AM UTC+1, [email protected] wrote: > > eh.... for the edition there is much more work to be done as i see, > anyway i can start it but don't know when shall i finish it. >
Yes, your own edition will be much more work. ... I did the basics for the German edition. I wanted to have the WikiText descriptions and some examples. .. The rest is linking to tiddlywiki.com > My new questions: > > 1. What is the "proper" way? language plugin, or create my own edition? > (In terms of maintance). > Plugin is the standard way at the moment. Just if you want to have your own edition + the corresponding "responsibilities and more work" go with the edition :) > 2. Am i ok with fork? i mention, that i forked a master repository but i > think is a little bit old (any guides for latest version) > - Create a pull request with your existing translation first. - Wait until Jeremy merged it. - Go to your existing local directory git remote -v should show something similar to this: jermolene https://github.com/Jermolene/TiddlyWiki5.git (fetch) jermolene https://github.com/Jermolene/TiddlyWiki5.git (push) origin [email protected]:pmario/TiddlyWiki5.git (fetch) origin [email protected]:pmario/TiddlyWiki5.git (push) origin should be your github repo jermolene may be missing. It's jeremy's repo. You can connect to it with: git remote add jermolene https://github.com/Jermolene/TiddlyWiki5.git git remote -v So you have connection to Jeremy's repo now git status .... make sure your branch is clean git checkout master git pull jermolene master git checkout -b new-feature-branch make your changes git add . git commit -m "some useful info" git push origin new-feature-branch go to github and create a new pull request. Start from the beginning. done! That's my workflow. have fun! mario -- You received this message because you are subscribed to the Google Groups "TiddlyWiki" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/tiddlywiki. For more options, visit https://groups.google.com/d/optout.

