mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2025-01-11 18:00:26 +00:00
Add system tiddlers of document for ko-KR edition (#2419)
This commit is contained in:
parent
398e9b2d08
commit
048d421c06
@ -0,0 +1,18 @@
|
||||
caption: {{$:/language/Search/DefaultResults/Caption}}
|
||||
created: 20141117081621387
|
||||
modified: 20160429080827508
|
||||
tags: $:/tags/SearchResults
|
||||
title: $:/core/ui/DefaultSearchResultList
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
\define searchResultList()
|
||||
//<small>{{$:/language/Search/Matches/Title}}</small>//
|
||||
|
||||
<$list filter="[!is[system]search:title{$(searchTiddler)$}sort[caption]limit[250]] [!is[system]search:ko-title{$(searchTiddler)$}sort[title]limit[250]][!is[system]search:en-title{$(searchTiddler)$}sort[title]limit[250]]" template="$:/core/ui/ListItemTemplate"/>
|
||||
|
||||
//<small>{{$:/language/Search/Matches/All}}</small>//
|
||||
|
||||
<$list filter="[!is[system]search{$(searchTiddler)$}sort[title]limit[250]]" template="$:/core/ui/ListItemTemplate"/>
|
||||
|
||||
\end
|
||||
<<searchResultList>>
|
@ -0,0 +1,12 @@
|
||||
created: 20160429080523192
|
||||
modified: 20160429080534142
|
||||
title: $:/core/ui/ListItemTemplate
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
<div class="tc-menu-list-item">
|
||||
<$link to={{!!title}}>
|
||||
<$view field="ko-title">
|
||||
<$view field="title"/>
|
||||
</$view>
|
||||
</$link>
|
||||
</div>
|
15
editions/ko-KR/tiddlers/system/$--core-ui-SideBar-Open.tid
Normal file
15
editions/ko-KR/tiddlers/system/$--core-ui-SideBar-Open.tid
Normal file
@ -0,0 +1,15 @@
|
||||
caption: {{$:/language/SideBar/Open/Caption}}
|
||||
created: 20160429080322465
|
||||
modified: 20160429080340559
|
||||
tags: $:/tags/SideBar
|
||||
title: $:/core/ui/SideBar/Open
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
\define lingo-base() $:/language/CloseAll/
|
||||
<$list filter="[list[$:/StoryList]]" history="$:/HistoryList" storyview="pop">
|
||||
|
||||
<$button message="tm-close-tiddler" tooltip={{$:/language/Buttons/Close/Hint}} aria-label={{$:/language/Buttons/Close/Caption}} class="tc-btn-invisible tc-btn-mini">×</$button> <$link to={{!!title}}><$transclude field="ko-title"><$view field="title"/></$transclude></$link>
|
||||
|
||||
</$list>
|
||||
|
||||
<$button message="tm-close-all-tiddlers" class="tc-btn-invisible tc-btn-mini"><<lingo Button>></$button>
|
@ -0,0 +1,46 @@
|
||||
created: 20160429080016628
|
||||
modified: 20160429080025660
|
||||
tags: $:/tags/ViewTemplate
|
||||
title: $:/core/ui/ViewTemplate/title
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
\define title-styles()
|
||||
fill:$(foregroundColor)$;
|
||||
\end
|
||||
\define config-title()
|
||||
$:/config/ViewToolbarButtons/Visibility/$(listItem)$
|
||||
\end
|
||||
<div class="tc-tiddler-title">
|
||||
<div class="tc-titlebar">
|
||||
<span class="tc-tiddler-controls">
|
||||
<$list filter="[all[shadows+tiddlers]tag[$:/tags/ViewToolbar]!has[draft.of]]" variable="listItem"><$reveal type="nomatch" state=<<config-title>> text="hide"><$transclude tiddler=<<listItem>>/></$reveal></$list>
|
||||
</span>
|
||||
<$set name="tv-wikilinks" value={{$:/config/Tiddlers/TitleLinks}}>
|
||||
<$link>
|
||||
<$set name="foregroundColor" value={{!!color}}>
|
||||
<span class="tc-tiddler-title-icon" style=<<title-styles>>>
|
||||
<$transclude tiddler={{!!icon}}/>
|
||||
</span>
|
||||
</$set>
|
||||
<$list filter="[all[current]removeprefix[$:/]]">
|
||||
<h2 class="tc-title" title={{$:/language/SystemTiddler/Tooltip}}>
|
||||
<span class="tc-system-title-prefix">$:/</span><$text text=<<currentTiddler>>/>
|
||||
</h2>
|
||||
</$list>
|
||||
<$list filter="[all[current]!prefix[$:/]]">
|
||||
<h2 class="tc-title">
|
||||
<$view field="ko-title">
|
||||
<$view field="title"/>
|
||||
</$view>
|
||||
</h2>
|
||||
</$list>
|
||||
</$link>
|
||||
</$set>
|
||||
</div>
|
||||
|
||||
<$reveal type="nomatch" text="" default="" state=<<tiddlerInfoState>> class="tc-tiddler-info tc-popup-handle" animate="yes" retain="yes">
|
||||
|
||||
<$transclude tiddler="$:/core/ui/TiddlerInfo"/>
|
||||
|
||||
</$reveal>
|
||||
</div>
|
@ -0,0 +1,24 @@
|
||||
created: 20141127091159720
|
||||
modified: 20160429070443000
|
||||
tags: $:/tags/Macro
|
||||
title: $:/editions/ko-KR/Macros/list
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
\define list-links(filter,type:"ul",subtype:"li",class:"")
|
||||
<!-- Essentially overriding $:/core/macros/list
|
||||
so that the list item is rather labeled with ko-title
|
||||
when present. -->
|
||||
<$type$ class="$class$">
|
||||
<$list filter="$filter$">
|
||||
<$subtype$>
|
||||
<$link to={{!!title}}>
|
||||
<$transclude field="caption">
|
||||
<$view field="ko-title">
|
||||
<$view field="title"/>
|
||||
</$view>
|
||||
</$transclude>
|
||||
</$link>
|
||||
</$subtype$>
|
||||
</$list>
|
||||
</$type$>
|
||||
\end
|
@ -0,0 +1,11 @@
|
||||
created: 20141212105632762
|
||||
modified: 20160429070739423
|
||||
tags: $:/tags/Macro
|
||||
title: $:/editions/ko-KR/Macros/timeline-title
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
\define timeline-title()
|
||||
<$view field="ko-title">
|
||||
<$view field="title"/>
|
||||
</$view>
|
||||
\end
|
@ -0,0 +1,16 @@
|
||||
created: 20141212090228728
|
||||
modified: 20160429070845087
|
||||
tags: $:/tags/Macro
|
||||
title: $:/editions/ko-KR/Macros/toc-caption
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
\define toc-caption()
|
||||
<$set name="tv-wikilinks" value="no">
|
||||
<$transclude field="caption">
|
||||
<$view field="ko-title">
|
||||
<$view field="title"/>
|
||||
</$view>
|
||||
</$transclude>
|
||||
</$set>
|
||||
\end
|
||||
|
20
editions/ko-KR/tiddlers/system/ContributionBanner.tid
Normal file
20
editions/ko-KR/tiddlers/system/ContributionBanner.tid
Normal file
@ -0,0 +1,20 @@
|
||||
title: $:/ContributionBanner
|
||||
tags: $:/tags/EditTemplate
|
||||
list-after: $:/core/ui/EditTemplate/title
|
||||
|
||||
\define makeGitHubLink()
|
||||
https://github.com/Jermolene/TiddlyWiki5/edit/master/editions/ko-KR/tiddlers/$(githubLink)$
|
||||
\end
|
||||
\define innerMakeGitHubLink(linkText)
|
||||
<$set name="githubLink" value={{$:/config/OriginalTiddlerPaths##$(draftOfTiddler)$}}>
|
||||
<a href=<<makeGitHubLink>> class="tc-tiddlylink-external" target="_blank">$linkText$</a>
|
||||
</$set>
|
||||
\end
|
||||
\define outerMakeGitHubLink(linkText)
|
||||
<$set name="draftOfTiddler" value={{$(currentTiddler)$!!draft.of}}>
|
||||
<<innerMakeGitHubLink "$linkText$">>
|
||||
</$set>
|
||||
\end
|
||||
<div class="tc-improvement-banner">
|
||||
{{$:/core/images/star-filled}} 우리에게 이 설명문서를 개선하는 데 도움을 줄 수 있나요? <<outerMakeGitHubLink "~GitHub에서 이 티들러">>를 편집하는 [[방법에 대해 알아보세요|Improving TiddlyWiki Documentation]]
|
||||
</div>
|
4
editions/ko-KR/tiddlers/system/SiteSubtitle.tid
Normal file
4
editions/ko-KR/tiddlers/system/SiteSubtitle.tid
Normal file
@ -0,0 +1,4 @@
|
||||
title: $:/SiteSubtitle
|
||||
type: application/x-tiddler
|
||||
|
||||
줄 없는 개인 웹 공책
|
6
editions/ko-KR/tiddlers/system/SiteTitle.tid
Normal file
6
editions/ko-KR/tiddlers/system/SiteTitle.tid
Normal file
@ -0,0 +1,6 @@
|
||||
created: 20131211131022562
|
||||
modified: 20160429043058045
|
||||
title: $:/SiteTitle
|
||||
type: text/vnd.tiddlywiki
|
||||
|
||||
[[티들리위키|TiddlyWiki]]
|
28
editions/ko-KR/tiddlers/system/Sources.tid
Normal file
28
editions/ko-KR/tiddlers/system/Sources.tid
Normal file
@ -0,0 +1,28 @@
|
||||
title: $:/editions/ko-KR/TiddlerInfo/Sources
|
||||
tags: $:/tags/TiddlerInfo
|
||||
caption: 자료
|
||||
|
||||
\define makeStaticLink()
|
||||
http://tiddlywiki.com/languages/ko-KR/static/<$view tiddler=<<currentTiddler>> field="title" format="doubleurlencoded"/>.html
|
||||
\end
|
||||
\define outerMakeStaticLink()
|
||||
<$macrocall $name="makeStaticLink" $output="text/plain"/>
|
||||
\end
|
||||
\define makeGitHubLink()
|
||||
https://github.com/Jermolene/TiddlyWiki5/blob/master/editions/ko-KR/tiddlers/$(githubLink)$
|
||||
\end
|
||||
\define outerMakeGitHubLink()
|
||||
<$set name="githubLink" value={{$:/config/OriginalTiddlerPaths##$(currentTiddler)$}}>
|
||||
<a href=<<makeGitHubLink>> class="tc-tiddlylink-external" target="_blank"><$text text=<<makeGitHubLink>>/></a>
|
||||
</$set>
|
||||
\end
|
||||
<$list filter="[all[current]!is[system]!is[shadow]]">
|
||||
|
||||
이 티들러의 정적 HTML 표현은 다음 URL에서 사용할 수 있습니다:
|
||||
|
||||
* <<outerMakeStaticLink>>
|
||||
|
||||
이 티들러에 대해 ~GitHub pull request를 보내서 우리에게 설명문서를 개선하는 데 도움을 주세요:
|
||||
|
||||
* <<outerMakeGitHubLink>>
|
||||
</$list>
|
3
editions/ko-KR/tiddlers/system/StaticBanner.tid
Normal file
3
editions/ko-KR/tiddlers/system/StaticBanner.tid
Normal file
@ -0,0 +1,3 @@
|
||||
title: $:/StaticBanner
|
||||
|
||||
<div class="tc-static-alert"><div class="tc-static-alert-inner">이 문서는 http://tiddlywiki.com/languages/ko-KR/ 에서 티들리위키의 정적 HTML 표현의 일부입니다</div></div>
|
27
editions/ko-KR/tiddlers/system/static.content.tid
Normal file
27
editions/ko-KR/tiddlers/system/static.content.tid
Normal file
@ -0,0 +1,27 @@
|
||||
title: $:/core/templates/static.content
|
||||
type: text/vnd.tiddlywiki
|
||||
hack-to-give-us-something-to-compare-against: yes
|
||||
|
||||
\define tv-wikilink-template() http://tiddlywiki.com/static/$uri_doubleencoded$.html
|
||||
|
||||
<!-- For Google, and people without JavaScript-->
|
||||
<$reveal state="!!hack-to-give-us-something-to-compare-against" type="nomatch" text=<<savingEmpty>>>
|
||||
|
||||
이 브라우저는 자바스크립트를 실행하지 않은 것으로 보입니다. 같은 내용을 찾아보려면 정적 HTML 버전 중 하나를 사용할 수 있습니다:
|
||||
|
||||
* http://tiddlywiki.com/static.html - 구분된 문서의 개별 티들러 찾아보기
|
||||
* http://tiddlywiki.com/alltiddlers.html#HelloThere - 모든 티들러를 포함하는 하나의 파일
|
||||
|
||||
---
|
||||
|
||||
{{HelloThere}}
|
||||
|
||||
{{TiddlyWiki}}
|
||||
|
||||
{{Features}}
|
||||
|
||||
{{Community}}
|
||||
|
||||
{{HelpingTiddlyWiki}}
|
||||
|
||||
</$reveal>
|
Loading…
Reference in New Issue
Block a user