Skip to content

Commit f2cf304

Browse files
authored
Merge pull request #337 from plotly/correct-translation-keys
Translation key corrections
2 parents e298840 + 376088d commit f2cf304

File tree

6 files changed

+568
-483
lines changed

6 files changed

+568
-483
lines changed

scripts/translationKeys/combined-translation-keys.txt

Lines changed: 292 additions & 250 deletions
Large diffs are not rendered by default.

scripts/translationKeys/translation-keys.txt

Lines changed: 270 additions & 227 deletions
Large diffs are not rendered by default.

src/components/fields/ErrorBars.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ class ErrorBars extends Component {
107107
<Numeric label={_('Value')} attr={`${this.props.attr}.value`} />
108108
{showCustomDataControl ? (
109109
<DataSelector
110-
label={_(`Custom Data`)}
110+
label={_('Custom Data')}
111111
attr={`${this.props.attr}.array`}
112112
/>
113113
) : null}
@@ -135,11 +135,11 @@ class ErrorBars extends Component {
135135
{showCustomDataControl ? (
136136
<Fragment>
137137
<DataSelector
138-
label={_(`Error (+)`)}
138+
label={_('Error (+)')}
139139
attr={`${this.props.attr}.array`}
140140
/>
141141
<DataSelector
142-
label={_(`Error (-)`)}
142+
label={_('Error (-)')}
143143
attr={`${this.props.attr}.arrayminus`}
144144
/>
145145
</Fragment>

src/default_panels/StyleAxesPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ const StyleAxesPanel = ({localize: _}) => (
215215
/>
216216
</Section>
217217

218-
<Section name={_('Number of labels')} attr="dtick">
218+
<Section name={_('Number of Labels')} attr="dtick">
219219
<Radio
220220
attr="tickmode"
221221
options={[

src/default_panels/StyleColorbarsPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ const StyleColorBarsPanel = ({localize: _}) => (
195195
]}
196196
/>
197197
</Section>
198-
<Section name={_('Number of labels')}>
198+
<Section name={_('Number of Labels')}>
199199
<Radio
200200
attr="colorbar.tickmode"
201201
options={[

src/default_panels/StyleTracesPanel.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ const StyleTracesPanel = ({localize: _}) => (
355355
localize={_}
356356
/>
357357
<Radio
358-
label={_('Show contour')}
358+
label={_('Show Contour')}
359359
attr="contour.show"
360360
options={[
361361
{label: _('Show'), value: true},

0 commit comments

Comments
 (0)