Skip to content

Commit e18c087

Browse files
committed
Add additional strings
1 parent 31b903f commit e18c087

File tree

9 files changed

+26
-13
lines changed

9 files changed

+26
-13
lines changed

public/atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<feed xmlns="http://www.w3.org/2005/Atom">
33
<id>https://xarray.dev/blog</id>
44
<title>Xarray Blog Feed</title>
5-
<updated>2025-05-04T15:06:18.664Z</updated>
5+
<updated>2025-05-04T15:18:07.732Z</updated>
66
<generator>https://github.com/jpmonette/feed</generator>
77
<link rel="alternate" href="https://xarray.dev/blog"/>
88
<link rel="self" href="https://xarray.dev/atom.xml"/>

public/rss.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<title>Xarray Blog Feed</title>
55
<link>https://xarray.dev/blog</link>
66
<description>The latest news, insights, and practices about Xarray from the Xarray team</description>
7-
<lastBuildDate>Sun, 04 May 2025 15:06:18 GMT</lastBuildDate>
7+
<lastBuildDate>Sun, 04 May 2025 15:18:07 GMT</lastBuildDate>
88
<docs>https://validator.w3.org/feed/docs/rss2.html</docs>
99
<generator>https://github.com/jpmonette/feed</generator>
1010
<language>en</language>

src/components/dashboard/timeseries-agg-stats-card.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ export const TimeseriesAggStatsCard = ({ query, title, icon }) => {
4545

4646
const change = {
4747
type: diffPercentage < 0 ? 'increase' : 'decrease',
48-
value: `${d3.format('.2f')(Math.abs(diffPercentage))}% since last month`,
48+
value:
49+
`${d3.format('.2f')(Math.abs(diffPercentage))}% ` + t`since last month`,
4950
}
5051
return (
5152
<StatisticsCard

src/locales/en/messages.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/locales/en/messages.po

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ msgstr "Database like alignment based on coordinate labels that smoothly handles
131131
msgid "Database like operations"
132132
msgstr "Database like operations"
133133

134-
#: src/components/dashboard/timeseries-agg-stats-card.js:57
134+
#: src/components/dashboard/timeseries-agg-stats-card.js:58
135135
msgid "days"
136136
msgstr "days"
137137

@@ -213,7 +213,7 @@ msgstr "GitHub Discussions"
213213
msgid "GroupBy operations"
214214
msgstr "GroupBy operations"
215215

216-
#: src/components/dashboard/timeseries-agg-stats-card.js:56
216+
#: src/components/dashboard/timeseries-agg-stats-card.js:57
217217
msgid "hours"
218218
msgstr "hours"
219219

@@ -361,6 +361,10 @@ msgstr "See More"
361361
msgid "Select values by label instead of integer location"
362362
msgstr "Select values by label instead of integer location"
363363

364+
#: src/components/dashboard/timeseries-agg-stats-card.js:49
365+
msgid "since last month"
366+
msgstr "since last month"
367+
364368
#: src/components/language-switcher.js:19
365369
msgid "Spanish"
366370
msgstr "Spanish"

0 commit comments

Comments
 (0)