<div dir="ltr">Sure</div><div class="gmail_extra"><br><div class="gmail_quote">On 16 August 2016 at 10:53, Hiroyuki Wada <span dir="ltr">&lt;<a href="mailto:wadahiro@gmail.com" target="_blank">wadahiro@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">By the way, I found some minor issues in UI like missing message key<br>
during this translation work.<br>
Could I create a JIRA issue and send a PR?<br>
<br>
Regards,<br>
<br>
--<br>
Hiroyuki Wada<br>
<div class="HOEnZb"><div class="h5"><br>
On Fri, Aug 5, 2016 at 10:13 AM, Hiroyuki Wada &lt;<a href="mailto:wadahiro@gmail.com">wadahiro@gmail.com</a>&gt; wrote:<br>
&gt;&gt; Just a note that we can accept localization PR if you also take care of<br>
&gt;&gt; maintain your locale in future releases.<br>
&gt;<br>
&gt; Yes, I will maintain it.<br>
&gt;<br>
&gt; Regards,<br>
&gt;<br>
&gt; --<br>
&gt; Hiroyuki Wada<br>
&gt;<br>
&gt;<br>
&gt; On Thu, Aug 4, 2016 at 5:02 PM, Marek Posolda &lt;<a href="mailto:mposolda@redhat.com">mposolda@redhat.com</a>&gt; wrote:<br>
&gt;&gt; Just a note that we can accept localization PR if you also take care of<br>
&gt;&gt; maintain your locale in future releases.<br>
&gt;&gt;<br>
&gt;&gt; Thanks,<br>
&gt;&gt; Marek<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; On 04/08/16 03:46, Hiroyuki Wada wrote:<br>
&gt;&gt;<br>
&gt;&gt; Thanks. I created a JIRA issue.<br>
&gt;&gt; <a href="https://issues.jboss.org/browse/KEYCLOAK-3397" rel="noreferrer" target="_blank">https://issues.jboss.org/<wbr>browse/KEYCLOAK-3397</a><br>
&gt;&gt;<br>
&gt;&gt; I&#39;ll send a pull request later!<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; 2016年8月3日(水) 17:05 Thomas Darimont &lt;<a href="mailto:thomas.darimont@googlemail.com">thomas.darimont@googlemail.<wbr>com</a>&gt;:<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Hello Hiroyuki,<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; I&#39;d say just go ahead and feel free to create a JIRA issue - and reference<br>
&gt;&gt;&gt; the issue number in your commit like<br>
&gt;&gt;&gt; KEYCLOAK-XXX Add Japanese localization.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Try to keep your changes in a single commit in your pull request, this<br>
&gt;&gt;&gt; makes it easier to apply (e.g. via cherry-pick) - I listed my workflow for<br>
&gt;&gt;&gt; reference below.<br>
&gt;&gt;&gt; Once you&#39;re done with your PR just add a link to it to the JIRA issue (in<br>
&gt;&gt;&gt; the JIRA issue, press &quot;.&quot; then type &quot;git&quot; -&gt; which brings you the to the<br>
&gt;&gt;&gt; &quot;add git pull request&quot; dialog.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; If you want an example for a JIRA issue here is a similar ticket for<br>
&gt;&gt;&gt; french translation:<br>
&gt;&gt;&gt; <a href="https://issues.jboss.org/browse/KEYCLOAK-1903" rel="noreferrer" target="_blank">https://issues.jboss.org/<wbr>browse/KEYCLOAK-1903</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Cheers,<br>
&gt;&gt;&gt; Thomas<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; My workflow:<br>
&gt;&gt;&gt; I tend to create a separate branch for every JIRA issue, so I do the<br>
&gt;&gt;&gt; following (from a checked out master branch)<br>
&gt;&gt;&gt; 0) git clone <a href="https://github.com/thomasdarimont/keycloak" rel="noreferrer" target="_blank">https://github.com/<wbr>thomasdarimont/keycloak</a><br>
&gt;&gt;&gt;     (origin is my keycloak fork)<br>
&gt;&gt;&gt;     git remote add upstream <a href="https://github.com/keycloak/keycloak" rel="noreferrer" target="_blank">https://github.com/keycloak/<wbr>keycloak</a><br>
&gt;&gt;&gt;     (upstream is original keycloak)<br>
&gt;&gt;&gt; 1) git checkout -b issue/KEYCLOAK-XXX-short-<wbr>description<br>
&gt;&gt;&gt; (this will create and checkout the branch)<br>
&gt;&gt;&gt; 2) code...<br>
&gt;&gt;&gt; 3) git add .<br>
&gt;&gt;&gt; 4) git commit -m (or use a graphical git client like gitg on linux, or<br>
&gt;&gt;&gt; gitx on osx)<br>
&gt;&gt;&gt; 5) git push -u origin issue/KEYCLOAK-XXX-short-<wbr>description<br>
&gt;&gt;&gt; 6) on your cloned github project you should now see a link for: create<br>
&gt;&gt;&gt; pull request for the newly pushed branch - click and the PR is there<br>
&gt;&gt;&gt; if I need to change stuff in the PR (before it is merged) I do the<br>
&gt;&gt;&gt; following<br>
&gt;&gt;&gt; 7) change...<br>
&gt;&gt;&gt; 8) git add .<br>
&gt;&gt;&gt; 9) git commit --amend (or use a graphical git client like gitg on linux,<br>
&gt;&gt;&gt; or gitx on osx)<br>
&gt;&gt;&gt; 10) git push -f origin issue/KEYCLOAK-XXX-short-<wbr>description<br>
&gt;&gt;&gt; (this will update your PR as well, but github is smart enough to retain<br>
&gt;&gt;&gt; potentially PR comments if those places didn&#39;t change)<br>
&gt;&gt;&gt; 11) goto 7) if necessary<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Updating your keycloak fork from original keycloak upstream<br>
&gt;&gt;&gt; 1) git checkout master<br>
&gt;&gt;&gt; 2) git pull upstream master<br>
&gt;&gt;&gt; 3) git push origin master<br>
&gt;&gt;&gt; (to update the master branch in your fork if necessary)<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; to update an issue branch to the latest master<br>
&gt;&gt;&gt; 1) git checkout issue/KEYCLOAK-XXX-short-<wbr>description<br>
&gt;&gt;&gt; 2) git rebase master<br>
&gt;&gt;&gt; (your issue branch is now based on the latest changes from master)<br>
&gt;&gt;&gt; 3) git push -f origin issue/KEYCLOAK-XXX-short-<wbr>description<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 2016-08-03 5:19 GMT+02:00 Hiroyuki Wada &lt;<a href="mailto:wadahiro@gmail.com">wadahiro@gmail.com</a>&gt;:<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Hello all,<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I am translating all base theme messages to Japanaese language now.<br>
&gt;&gt;&gt;&gt; (I think I can do it by the end of the week.)<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; I&#39;d like to contribute the message resources, How do you think?<br>
&gt;&gt;&gt;&gt; If it&#39;s ok, I&#39;ll create a JIRA issue and create a pull request.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; Regards,<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt; Hiroyuki Wada<br>
&gt;&gt;&gt;&gt; <a href="mailto:wadahiro@gmail.com">wadahiro@gmail.com</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; ______________________________<wbr>_________________<br>
&gt;&gt;&gt;&gt; keycloak-dev mailing list<br>
&gt;&gt;&gt;&gt; <a href="mailto:keycloak-dev@lists.jboss.org">keycloak-dev@lists.jboss.org</a><br>
&gt;&gt;&gt;&gt; <a href="https://lists.jboss.org/mailman/listinfo/keycloak-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/<wbr>mailman/listinfo/keycloak-dev</a><br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; ______________________________<wbr>_________________<br>
&gt;&gt; keycloak-dev mailing list<br>
&gt;&gt; <a href="mailto:keycloak-dev@lists.jboss.org">keycloak-dev@lists.jboss.org</a><br>
&gt;&gt; <a href="https://lists.jboss.org/mailman/listinfo/keycloak-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/<wbr>mailman/listinfo/keycloak-dev</a><br>
&gt;&gt;<br>
&gt;&gt;<br>
<br>
______________________________<wbr>_________________<br>
keycloak-dev mailing list<br>
<a href="mailto:keycloak-dev@lists.jboss.org">keycloak-dev@lists.jboss.org</a><br>
<a href="https://lists.jboss.org/mailman/listinfo/keycloak-dev" rel="noreferrer" target="_blank">https://lists.jboss.org/<wbr>mailman/listinfo/keycloak-dev</a></div></div></blockquote></div><br></div>