Page 2 of 3

Re: A Korean Forum?

Posted: 11 Dec 2019, 21:56
by joedf
Alrighty, link is up.
and we have a french repo here :+1:
https://github.com/ahkscript/AHK-Docs_FR

Let me know if the permissions are not set up for any volunteers.

Re: A Korean Forum?

Posted: 12 Dec 2019, 01:30
by SOTE
joedf wrote:
11 Dec 2019, 17:16
@gregster No pressure on anyone, ahah ;) I'll start it, but I have no idea how long this is gonna take :P
@SOTE Great :+1:

I'll get on both these tasks later today.
Were you guys able to get in contact with anybody at the Korean website? Hopefully something can be setup so that they can help translate the docs from English to Korean.

Maybe also advertise on the Korean link here at our website, that you are looking for document translation help.

Re: A Korean Forum?

Posted: 12 Dec 2019, 10:35
by joedf
I haven't yet. I'm sending a message now :+1:

Re: A Korean Forum?

Posted: 01 Jan 2020, 08:21
by smschulz
the viking countries should have their own page

Re: A Korean Forum?

Posted: 01 Jan 2020, 14:21
by SOTE
smschulz wrote:
01 Jan 2020, 08:21
the viking countries should have their own page
It's not been a nationalistic, ethnic, or racist type of thing on the forums but rather existing websites (the Korean one has been around and promoting AutoHotkey since 2008), a large group of AutoHotkey users that speak a particular language, and who is translating the English help files into another language.

Maybe you can link to "Viking" websites that primarily promote AutoHotkey (don't know if that would be interesting or scary), or perhaps you can translate the English help file into "Viking" related languages (which appears the closest language would be Icelandic).

Re: A Korean Forum?

Posted: 01 Jan 2020, 15:49
by tank
happy new year
For any new ethnic forum a couple things have to occur.
  • Language barrier No suitable listed language exists to support the user base
  • a substantial user base must exist
  • an established trusted member of this community must volunteer and be approved to moderate it.
All three criteria must be met.

With the Koreans in particular they simply did their own thing. but they did it in a way that we want to figure out how to recognise

Re: A Korean Forum?

Posted: 12 Jan 2020, 13:33
by SOTE
joedf wrote:
12 Dec 2019, 10:35
I haven't yet. I'm sending a message now :+1:
Any luck in contacting them and seeing if they could translate the help file from English to Korean?

Re: A Korean Forum?

Posted: 13 Jan 2020, 10:39
by joedf
I got absolutely no response... :( I am not sure there are that many active long-time users on the forum from what I could see with google translate... :/

Re: A Korean Forum?

Posted: 13 Jan 2020, 16:32
by SOTE
joedf wrote:
13 Jan 2020, 10:39
I got absolutely no response... :( I am not sure there are that many active long-time users on the forum from what I could see with google translate... :/
They are not as busy as here, LOL, but they have users and activity.

The site administrator is Hyunchan Kim. You might be able to reach him from here. http://tleap.net/hello-world/#respond

Code: Select all

comment (댓글)
name (이름)
e-mail (이메일)
Website (웹사이트)
However, that's his kind of blog/hello page, so maybe a bit iffy. I will send you his registered email by PM.

Re: A Korean Forum?

Posted: 17 Jan 2020, 17:10
by SOTE
@joedf

A Korean translation of the AutoHotkey help document was done 4 years ago by 한글판 johjnsonj 151111, and he put it on SourceForge, instead of GitHub. The translation is a bit behind version wise, but arguably good enough that you might want to link to it or include it in the download section (after inspecting it).

Here is the online document link- http://autohotkeykr.sourceforge.net/docs/commands/
Here is the download- https://sourceforge.net/projects/autohotkeykr/

The SourceForge profile of the creator, who you might want to contact to see if he's interesting in updating the help file or joining the site (if he's not already a member). https://sourceforge.net/u/johnsoonj/profile/

Re: A Korean Forum?

Posted: 17 Jan 2020, 18:21
by joedf
Oh thanks for sharing!
I'll put it on Github Page this weekend. :+1:

Re: A Korean Forum?

Posted: 21 Jan 2020, 10:55
by joedf
a little late but here it is! :+1:
https://github.com/ahkscript/AHK-Docs_KR
and french too (still needs to get started :b )
https://github.com/ahkscript/AHK-Docs_FR

Re: A Korean Forum?

Posted: 25 Jan 2020, 06:14
by SOTE
joedf wrote:
21 Jan 2020, 10:55
a little late but here it is! :+1:
https://github.com/ahkscript/AHK-Docs_KR
and french too (still needs to get started :b )
https://github.com/ahkscript/AHK-Docs_FR
That looks great. If it's not too much trouble, there is a couple more things in regards to the help file and GitHub:

Can you also put the Korean GitHub link on the AutoHotkey download page, where the German and Chinese links are (https://www.autohotkey.com/download/)?

At GitHub, it would be good if the Korean AutoHotkey.chm is put in a zip and as a downloadable file under releases (https://github.com/ahkscript/AHK-Docs_KR/releases). This is what has been done for the German translation of the help file.
This is the direct SourceForge download link to the .zip (careful as it will almost immediately download-
https://sourceforge.net/projects/autohotkeykr/files/AutoHotkey%20help.zip/download) or you might want to only put the AutoHotkey.chm in a .zip for GitHub.

Lastly, it would probably be a good idea to add the Korean online translation of the help document next to the German and Chinese ones at the bottom of this page (https://www.autohotkey.com/). Link to the Korean online translation- http://autohotkeykr.sourceforge.net/docs/commands/

Code: Select all

Documentation & Tutorials
Documentation (de - 帮助)
Note- As the French translation comes along, the same would be nice.

Thank you.

Re: A Korean Forum?

Posted: 27 Jan 2020, 11:15
by joedf
Done, done and ... done! :+1:

Re: A Korean Forum?

Posted: 27 Jan 2020, 16:46
by Ragnar
Since the CHM file is now hosted on GitHub, it would be better to make the online help accessible via https://ahkscript.github.io/KR/docs/. What you need to do is the following:

  • In the repo AHK-Docs_KR, move the files from src into the KR folder so that the path is KR/docs/ instead of KR/src/docs/ and commit this change.
  • In the repo ahkscript.github.io, add a submodule (git command is git submodule add https://github.com/ahkscript/AHK-Docs_KR KR) and commit this change.
Note that changes made later in AHK-Docs_KR are only visible after a "git submodule update" in ahkscript.github.io (followed by commit).

Or I can do it myself, if you make me a member of ahkscript. So I can also adjust the Korean docs to the new navigation bar.

Re: A Korean Forum?

Posted: 27 Jan 2020, 18:42
by joedf
I thought of something similar but was lazy aha :p
Also Whoopsy! I though you were already a member, I've sent an invitation to @Ragnar-F, once accepted i'll make sure the permissions are updated correctly.
Thanks! :+1:

Re: A Korean Forum?

Posted: 27 Jan 2020, 19:51
by SOTE
This is great. It's also amazing how AutoHotkey is worldwide.

Re: A Korean Forum?

Posted: 28 Jan 2020, 14:57
by joedf
@Ragnar You're good to go! You have access to all the main repos :+1:
@SOTE Agreed. :D

Re: A Korean Forum?

Posted: 29 Jan 2020, 05:21
by Ragnar
Thanks @joedf.

I've "modernized" the Korean docs and submitted a PR for ahkscript.github.io to make the docs accessible via https://ahkscript.github.io/ko/docs/. After merging, it may take some time for this address to work, depending on the "mood" of GitHub (but can be forced if necessary).

I intentionally chose KO instead of KR, as KO is the official abbreviation for the Korean language according to ISO 639-1. Also in lower case to, for example, simplify manual writing.

Re: A Korean Forum?

Posted: 29 Jan 2020, 10:41
by joedf
Just saw this after GitHub. Great work! Also, I agree :+1: