Skip to content

Commit 36e3591

Browse files
Add a missing string for translation (#579)
"Graph preview" in the settings dialog
1 parent 36b1d8b commit 36e3591

File tree

17 files changed

+83
-1
lines changed

17 files changed

+83
-1
lines changed

lang/ui.en.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,10 @@
755755
"defaultMessage": "Thick",
756756
"description": "Graph line weight option"
757757
},
758+
"graph-preview": {
759+
"defaultMessage": "Graph preview",
760+
"description": "Label for preview of the graph shown in the settings dialog"
761+
},
758762
"help-label": {
759763
"defaultMessage": "Help",
760764
"description": "Help icon aria label"

lang/ui.es-es.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,10 @@
755755
"defaultMessage": "Grosor",
756756
"description": "Graph line weight option"
757757
},
758+
"graph-preview": {
759+
"defaultMessage": "Graph preview",
760+
"description": "Label for preview of the graph shown in the settings dialog"
761+
},
758762
"help-label": {
759763
"defaultMessage": "Ayuda",
760764
"description": "Help icon aria label"

lang/ui.ja.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,10 @@
755755
"defaultMessage": "太い",
756756
"description": "Graph line weight option"
757757
},
758+
"graph-preview": {
759+
"defaultMessage": "Graph preview",
760+
"description": "Label for preview of the graph shown in the settings dialog"
761+
},
758762
"help-label": {
759763
"defaultMessage": "ヘルプ",
760764
"description": "Help icon aria label"

lang/ui.ko.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,10 @@
755755
"defaultMessage": "두꺼움",
756756
"description": "Graph line weight option"
757757
},
758+
"graph-preview": {
759+
"defaultMessage": "Graph preview",
760+
"description": "Label for preview of the graph shown in the settings dialog"
761+
},
758762
"help-label": {
759763
"defaultMessage": "도움 및 지원",
760764
"description": "Help icon aria label"

lang/ui.nl.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,10 @@
755755
"defaultMessage": "Vet",
756756
"description": "Graph line weight option"
757757
},
758+
"graph-preview": {
759+
"defaultMessage": "Graph preview",
760+
"description": "Label for preview of the graph shown in the settings dialog"
761+
},
758762
"help-label": {
759763
"defaultMessage": "Help",
760764
"description": "Help icon aria label"

lang/ui.pl.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,10 @@
755755
"defaultMessage": "Grube",
756756
"description": "Graph line weight option"
757757
},
758+
"graph-preview": {
759+
"defaultMessage": "Graph preview",
760+
"description": "Label for preview of the graph shown in the settings dialog"
761+
},
758762
"help-label": {
759763
"defaultMessage": "Pomoc",
760764
"description": "Help icon aria label"

lang/ui.pt-br.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,10 @@
755755
"defaultMessage": "Grossa",
756756
"description": "Graph line weight option"
757757
},
758+
"graph-preview": {
759+
"defaultMessage": "Graph preview",
760+
"description": "Label for preview of the graph shown in the settings dialog"
761+
},
758762
"help-label": {
759763
"defaultMessage": "Ajuda",
760764
"description": "Help icon aria label"

lang/ui.zh-tw.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -755,6 +755,10 @@
755755
"defaultMessage": "厚實的",
756756
"description": "Graph line weight option"
757757
},
758+
"graph-preview": {
759+
"defaultMessage": "Graph preview",
760+
"description": "Label for preview of the graph shown in the settings dialog"
761+
},
758762
"help-label": {
759763
"defaultMessage": "幫助",
760764
"description": "Help icon aria label"

src/components/SettingsDialog.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,9 @@ export const SettingsDialog = ({
151151
}
152152
/>
153153
<VStack alignItems="flex-start" w="full">
154-
<Text>Graph preview</Text>
154+
<Text>
155+
<FormattedMessage id="graph-preview" />
156+
</Text>
155157
<AspectRatio ratio={526 / 92} w="full">
156158
<RecordingGraph
157159
responsive

src/messages/ui.en.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1285,6 +1285,12 @@
12851285
"value": "Thick"
12861286
}
12871287
],
1288+
"graph-preview": [
1289+
{
1290+
"type": 0,
1291+
"value": "Graph preview"
1292+
}
1293+
],
12881294
"help-label": [
12891295
{
12901296
"type": 0,

0 commit comments

Comments
 (0)