Translate "Posted on" strings.
This commit is contained in:
parent
bc07d11fa1
commit
ff6c248d1a
@ -498,6 +498,7 @@ langDict "nl" =
|
|||||||
constField "title-plamo" "Plamo" <>
|
constField "title-plamo" "Plamo" <>
|
||||||
constField "title-radio" "Radio" <>
|
constField "title-radio" "Radio" <>
|
||||||
constField "title-software" "Software" <>
|
constField "title-software" "Software" <>
|
||||||
|
constField "posted-on" "Geplaatst op:" <>
|
||||||
constField "text-plamo-not-ready" "Deze model-kit heeft nog geen gepubliceerd werk." <>
|
constField "text-plamo-not-ready" "Deze model-kit heeft nog geen gepubliceerd werk." <>
|
||||||
constField "text-plamo-back" "Terug naar plamo kits" <>
|
constField "text-plamo-back" "Terug naar plamo kits" <>
|
||||||
constField "text-radio-back" "Terug naar radio overzicht" <>
|
constField "text-radio-back" "Terug naar radio overzicht" <>
|
||||||
@ -522,6 +523,7 @@ langDict "jp" =
|
|||||||
constField "title-plamo" "プラモ" <>
|
constField "title-plamo" "プラモ" <>
|
||||||
constField "title-radio" "ラジオ" <>
|
constField "title-radio" "ラジオ" <>
|
||||||
constField "title-software" "ソフトウェア" <>
|
constField "title-software" "ソフトウェア" <>
|
||||||
|
constField "posted-on" "投稿日:" <>
|
||||||
constField "text-plamo-not-ready" "この模型キットには、まだ制作例が公開されていません。" <>
|
constField "text-plamo-not-ready" "この模型キットには、まだ制作例が公開されていません。" <>
|
||||||
constField "text-plamo-back" "プラモデルキットに戻る" <>
|
constField "text-plamo-back" "プラモデルキットに戻る" <>
|
||||||
constField "text-radio-back" "ラジオに戻る" <>
|
constField "text-radio-back" "ラジオに戻る" <>
|
||||||
@ -546,6 +548,7 @@ langDict "en" =
|
|||||||
constField "title-plamo" "Plamo" <>
|
constField "title-plamo" "Plamo" <>
|
||||||
constField "title-radio" "Radio" <>
|
constField "title-radio" "Radio" <>
|
||||||
constField "title-software" "Software" <>
|
constField "title-software" "Software" <>
|
||||||
|
constField "posted-on" "Posted on:" <>
|
||||||
constField "text-plamo-not-ready" "This model kit has no work published for it yet." <>
|
constField "text-plamo-not-ready" "This model kit has no work published for it yet." <>
|
||||||
constField "text-plamo-back" "Back to plamo kits" <>
|
constField "text-plamo-back" "Back to plamo kits" <>
|
||||||
constField "text-radio-back" "Back to radio overview" <>
|
constField "text-radio-back" "Back to radio overview" <>
|
||||||
|
|||||||
9
portfolio/templates/equipment.html
Normal file
9
portfolio/templates/equipment.html
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
<article>
|
||||||
|
<section class="header">
|
||||||
|
<span class="text-body-secondary">$posted-on$ $formatted_date$</span>
|
||||||
|
<hr/>
|
||||||
|
</section>
|
||||||
|
<section>
|
||||||
|
$body$
|
||||||
|
</section>
|
||||||
|
</article>
|
||||||
@ -1,9 +1,7 @@
|
|||||||
<article>
|
<article>
|
||||||
<section class="header">
|
<section class="header">
|
||||||
Posted on $formatted_date$
|
<span class="text-body-secondary">$posted-on$ $formatted_date$</span>
|
||||||
$if(author)$
|
<hr/>
|
||||||
by $author$
|
|
||||||
$endif$
|
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
$body$
|
$body$
|
||||||
|
|||||||
@ -1,10 +1,10 @@
|
|||||||
<article>
|
<article>
|
||||||
<section class="header">
|
<section class="header">
|
||||||
<a href="/$language$/plamo.html" class="back-link">$text-plamo-back$</a><br/>
|
<a href="/$language$/plamo.html" class="back-link">$text-plamo-back$</a><br/>
|
||||||
<span class="text-body-secondary">Posted on: $formatted_date$</span>
|
<span class="text-body-secondary">$posted-on$ $formatted_date$</span>
|
||||||
|
<hr/>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
<hr/>
|
|
||||||
<h2>$table-plamo-model-info$</h2>
|
<h2>$table-plamo-model-info$</h2>
|
||||||
<table class="table table-striped-columns">
|
<table class="table table-striped-columns">
|
||||||
$if(model_name)$
|
$if(model_name)$
|
||||||
|
|||||||
@ -1,9 +1,7 @@
|
|||||||
<article>
|
<article>
|
||||||
<section class="header">
|
<section class="header">
|
||||||
Posted on $formatted_date$
|
<span class="text-body-secondary">$posted-on$ $formatted_date$</span>
|
||||||
$if(author)$
|
<hr/>
|
||||||
by $author$
|
|
||||||
$endif$
|
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
$body$
|
$body$
|
||||||
|
|||||||
@ -1,7 +1,8 @@
|
|||||||
<article>
|
<article>
|
||||||
<section class="header">
|
<section class="header">
|
||||||
<a href="/$language$/radio.html" class="back-link">$text-radio-back$</a><br/>
|
<a href="/$language$/radio.html" class="back-link">$text-radio-back$</a><br/>
|
||||||
Posted on $formatted_date$
|
<span class="text-body-secondary">$posted-on$ $formatted_date$</span>
|
||||||
|
<hr/>
|
||||||
</section>
|
</section>
|
||||||
<section>
|
<section>
|
||||||
$body$
|
$body$
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user