mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-24 06:59:52 +01:00
vue ui i18n: localized "{count} capture(s) in/on {month/date}"
This commit is contained in:
parent
47ada39b16
commit
99b6f20a60
File diff suppressed because one or more lines are too long
@ -50,6 +50,10 @@ html, body
|
|||||||
"show calendar":"{{ _Q('show calendar') }}",
|
"show calendar":"{{ _Q('show calendar') }}",
|
||||||
"hide calendar":"{{ _Q('hide calendar') }}",
|
"hide calendar":"{{ _Q('hide calendar') }}",
|
||||||
"View capture on {date}":"{{ _Q('View capture on {date}') }}",
|
"View capture on {date}":"{{ _Q('View capture on {date}') }}",
|
||||||
|
"{count} capture on {date}":"{{ _Q('{count} capture on {date}') }}",
|
||||||
|
"{count} captures on {date}":"{{ _Q('{count} captures on {date}') }}",
|
||||||
|
"{count} capture in {month}":"{{ _Q('{count} capture in {month}') }}",
|
||||||
|
"{count} captures in {month}":"{{ _Q('{count} captures in {month}') }}",
|
||||||
"Loading...": "{{ _Q('Loading...') }}",
|
"Loading...": "{{ _Q('Loading...') }}",
|
||||||
"Current Capture": "{{ _Q('Current Capture') }}",
|
"Current Capture": "{{ _Q('Current Capture') }}",
|
||||||
"capture": "{{ _Q('capture') }}",
|
"capture": "{{ _Q('capture') }}",
|
||||||
|
@ -50,6 +50,10 @@
|
|||||||
"show calendar":"{{ _Q('show calendar') }}",
|
"show calendar":"{{ _Q('show calendar') }}",
|
||||||
"hide calendar":"{{ _Q('hide calendar') }}",
|
"hide calendar":"{{ _Q('hide calendar') }}",
|
||||||
"View capture on {date}":"{{ _Q('View capture on {date}') }}",
|
"View capture on {date}":"{{ _Q('View capture on {date}') }}",
|
||||||
|
"{count} capture on {date}":"{{ _Q('{count} capture on {date}') }}",
|
||||||
|
"{count} captures on {date}":"{{ _Q('{count} captures on {date}') }}",
|
||||||
|
"{count} capture in {month}":"{{ _Q('{count} capture in {month}') }}",
|
||||||
|
"{count} captures in {month}":"{{ _Q('{count} captures in {month}') }}",
|
||||||
"Loading...": "{{ _Q('Loading...') }}",
|
"Loading...": "{{ _Q('Loading...') }}",
|
||||||
"Current Capture": "{{ _Q('Current Capture') }}",
|
"Current Capture": "{{ _Q('Current Capture') }}",
|
||||||
"capture": "{{ _Q('capture') }}",
|
"capture": "{{ _Q('capture') }}",
|
||||||
|
@ -9,9 +9,10 @@
|
|||||||
{{ $root._('View capture on {date}', {date: tooltipPeriod.snapshotPeriod.snapshot.getTimeDateFormatted()}) }}
|
{{ $root._('View capture on {date}', {date: tooltipPeriod.snapshotPeriod.snapshot.getTimeDateFormatted()}) }}
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="tooltipPeriod.snapshotCount">
|
<div v-else-if="tooltipPeriod.snapshotCount">
|
||||||
{{ tooltipPeriod.snapshotCount }} captures
|
{{ $root._(
|
||||||
<span v-if="isTooltipPeriodDayOrHour">on</span><span v-else>in</span>
|
`{count} capture${tooltipPeriod.snapshotCount > 1 && 's'} ${isTooltipPeriodDayOrHour ? 'on':'in'} {${isTooltipPeriodDayOrHour ? 'date':'month'}\}`,
|
||||||
{{ tooltipPeriod.getFullReadableId() }}
|
{ count: tooltipPeriod.snapshotCount, date: tooltipPeriod.getFullReadableId(), month: tooltipPeriod.getFullReadableId()}
|
||||||
|
)}}
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user