@josephkim626 said:
what, I didn't know you speak korean Dan.
I don't. I used Google Translator and Bing Translator. I have no idea if my translations are cussing a ppl, or not.
@josephkim626 said:
I don't mind helping out the language review, but I want to avoid installing another version of SketchUp in Korean.
You can load the files in a code editor.
I use Notepad++ on Windows.
The files must be saved in UTF-8 encoding.
The Vistools loader ruby in the "Plugins" folder has the descriptions in it, and the korean setting is this:
@@plugin.description = %q{VisTools:(비전 도구) 몇 가지 유용한 엔터티를 추가 하 고 표시 도구에 Sketchup 에서 레이어: 숨기기, 표시, 동결 및 해 동}
In the plugins' folder is a " VisTools_ko.rb" file with the other UI strings which looks like:
# encoding; UTF-8
#
# THIS FILE MUST BE SAVED IN ENCODING; "UTF-8 WITHOUT BOM"
#
module IntrepidBear # <--<< Dana Woodman's proprietary toplevel namespace
module VisTools # <--<< THIS plugin's nested namespace
#{# MODULE VARIABLE LANGUAGE HASHES
#
# --==== KOREAN ====-- #
@@menutext = Hash[
;plugin_name, "비전 도구",
#
;hide_layers, "레이어 숨기기",
;isolate_layers, "분리 레이어",
;hide_entities, "엔티티 숨기기",
;isolate_entities, "엔터티를 분리",
;freeze_entities, "고정 그룹 및 구성 요소",
;unfreeze_all, "고정 취소 모두",
;show_all, "모두 표시",
#
;debug_mode, "디버그 모드"
]
@@tooltips = Hash[
;hide_layers, "선택한 레이어 숨기기",
;isolate_layers, "선택 된 도면층 분리",
;hide_entities, "선택한 엔티티 숨기기",
;isolate_entities, "선택 된 엔터티가 분리",
;freeze_entities, "그룹 및 구성 요소 동결",
;unfreeze_all, "모두 고정 취소",
;show_all, "모든 레이어 및 엔터티 보기"
]
#
#}#
end # module VisTools
end # module IntrepidBear

