Skip to content

Commit

Permalink
fix The Korean sentence order in Authorship description (#2947)
Browse files Browse the repository at this point in the history
Signed-off-by: Juyoung Kim <[email protected]>
  • Loading branch information
tandara0 authored Aug 29, 2024
1 parent b92ddbb commit 934ce42
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions js/components/authorship.html
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
<!-- ko if: createdBy && createdDate -->
<div data-bind="css: classes('container')">
<span data-bind="text: createdText"></span>
<span data-bind="visible: createdBy, text: ko.i18nformat('components.authorship.byCreated', 'by <%=createdBy%>', {createdBy: createdBy})"></span>
<span data-bind="text: ko.i18n('components.authorship.on', 'on')"></span>
<span data-bind="text: createdDate"></span><span data-bind="visible: modifiedDate">,</span>
<span data-bind="visible: modifiedDate">
<span data-bind="text: ko.i18n('components.authorship.modified', 'modified')"></span>
<span data-bind="visible: createdBy, text: ko.i18nformat('components.authorship.byModified', 'by <%=modifiedBy%>', {modifiedBy: modifiedBy})"></span>
<span data-bind="text: ko.i18n('components.authorship.on', 'on')"></span>
<span data-bind="text: modifiedDate"></span>
</span>
<span data-bind="visible: createdBy,
text: ko.i18nformat('components.authorship.createdLabel',
'created by <%=createdBy%> on <%=cratedDate%>',
{createdBy: createdBy, createdDate: createdDate})"></span><span data-bind="visible: modifiedDate">,</span>
<span data-bind="visible: modifiedDate,
text: ko.i18nformat('components.authorship.modifiedLabel',
'modified by <%=modifiedBy%> on <%=modifiedDate%>',
{modifiedBy: modifiedBy, modifiedDate: modifiedDate})"></span>
</div>
<!-- /ko -->
<!-- /ko -->

0 comments on commit 934ce42

Please sign in to comment.