-
Notifications
You must be signed in to change notification settings - Fork 8.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Translate Area, Line, Horizontal and Vertical Bar #23823
Merged
tibmt
merged 10 commits into
elastic:master
from
tibmt:feature/translations/pointSeries
Oct 18, 2018
Merged
Changes from 7 commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
6264305
Translate Area, Line, Horizontal and Vertical Bar
tibmt 9864c1b
update translation of Line, Area, Vertical and Horizontal Bar visuali…
tibmt 862e83c
Merge branch 'master' into feature/translations/pointSeries
tibmt 43f4084
fix some things and add 'kbnVislibVisTypes' to .i18nrc.json
tibmt bbcfdb5
Merge branch 'master' into feature/translations/pointSeries
tibmt 21cdff3
Change some lines of code
tibmt ae8f746
Update series.html
tibmt 6bf0e02
delete trailing spaces and rename some variables
tibmt 73b5906
Merge branch 'master' into feature/translations/pointSeries
tibmt e80541c
change '...' to '…'
tibmt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,33 @@ | ||
<div class="kuiSideBarSection kuiSideBarSection__main"> | ||
<div class="kuiSideBarSectionTitle"> | ||
<div class="kuiSideBarSectionTitle__text"> | ||
X-Axis | ||
</div> | ||
<div | ||
class="kuiSideBarSectionTitle__text" | ||
i18n-id="kbnVislibVisTypes.controls.pointSeries.categoryAxis.xAxisTitle" | ||
i18n-default-message="X-Axis" | ||
></div> | ||
</div> | ||
|
||
<!-- General --> | ||
<div class="kuiSideBarSection"> | ||
<div class="kuiSideBarFormRow"> | ||
<label class="kuiSideBarFormRow__label" for="categoryAxisShow"> | ||
Show | ||
</label> | ||
<label | ||
class="kuiSideBarFormRow__label" | ||
for="categoryAxisShow" | ||
i18n-id="kbnVislibVisTypes.controls.pointSeries.categoryAxis.showLabel" | ||
i18n-default-message="Show" | ||
></label> | ||
<div class="kuiSideBarFormRow__control"> | ||
<input class="kuiCheckBox" id="categoryAxisShow" type="checkbox" ng-model="editorState.params.categoryAxes[0].show"> | ||
</div> | ||
</div> | ||
|
||
<div class="kuiSideBarFormRow"> | ||
<label class="kuiSideBarFormRow__label" for="categoryAxisPosition"> | ||
Position | ||
</label> | ||
<label | ||
class="kuiSideBarFormRow__label" | ||
for="categoryAxisPosition" | ||
i18n-id="kbnVislibVisTypes.controls.pointSeries.categoryAxis.positionLabel" | ||
i18n-default-message="Position" | ||
></label> | ||
<div class="kuiSideBarFormRow__control"> | ||
<select | ||
id="categoryAxisPosition" | ||
|
@@ -43,46 +51,60 @@ | |
ng-class="{ 'fa-caret-down': isCategoryAxisAdvancedOptionsOpen, 'fa-caret-right': !isCategoryAxisAdvancedOptionsOpen }" | ||
class="kuiIcon fa-caret-right kuiSideBarOptionsLink__caret" | ||
></span> | ||
<span class="kuiSideBarOptionsLink__text"> | ||
<span ng-show="!isCategoryAxisAdvancedOptionsOpen"> | ||
Show | ||
</span> | ||
<span ng-show="isCategoryAxisAdvancedOptionsOpen"> | ||
Hide | ||
</span> | ||
Advanced Options | ||
</span> | ||
<span | ||
class="kuiSideBarOptionsLink__text" | ||
ng-show="!isCategoryAxisAdvancedOptionsOpen" | ||
i18n-id="kbnVislibVisTypes.controls.pointSeries.categoryAxis.showAdvancedOptionsVisibilityLabel" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why are we using |
||
i18n-default-message="Show Advanced Options" | ||
></span> | ||
<span | ||
class="kuiSideBarOptionsLink__text" | ||
ng-show="isCategoryAxisAdvancedOptionsOpen" | ||
i18n-id="kbnVislibVisTypes.controls.pointSeries.categoryAxis.hideAdvancedOptionsVisibilityLabel" | ||
i18n-default-message="Hide Advanced Options" | ||
></span> | ||
</a> | ||
|
||
<div ng-show="isCategoryAxisAdvancedOptionsOpen"> | ||
<!-- Labels --> | ||
<div class="kuiSideBarSection"> | ||
<h6 class="kuiSideBarFormSectionTitle"> | ||
Labels | ||
</h6> | ||
<h6 | ||
class="kuiSideBarFormSectionTitle" | ||
i18n-id="kbnVislibVisTypes.controls.pointSeries.categoryAxis.labelsTitle" | ||
i18n-default-message="Labels" | ||
></h6> | ||
|
||
<div class="kuiSideBarFormRow"> | ||
<label class="kuiSideBarFormRow__label" for="categoryAxisShowLabels"> | ||
Show Labels | ||
</label> | ||
<label | ||
class="kuiSideBarFormRow__label" | ||
for="categoryAxisShowLabels" | ||
i18n-id="kbnVislibVisTypes.controls.pointSeries.categoryAxis.showLabelsLabel" | ||
i18n-default-message="Show Labels" | ||
></label> | ||
<div class="kuiSideBarFormRow__control"> | ||
<input class="kuiCheckBox" id="categoryAxisShowLabels" type="checkbox" ng-model="editorState.params.categoryAxes[0].labels.show"> | ||
</div> | ||
</div> | ||
|
||
<div class="kuiSideBarFormRow"> | ||
<label class="kuiSideBarFormRow__label" for="categoryAxisShowFilter"> | ||
Filter Labels | ||
</label> | ||
<label | ||
class="kuiSideBarFormRow__label" | ||
for="categoryAxisShowFilter" | ||
i18n-id="kbnVislibVisTypes.controls.pointSeries.categoryAxis.filterLabelsLabel" | ||
i18n-default-message="Filter Labels" | ||
></label> | ||
<div class="kuiSideBarFormRow__control"> | ||
<input class="kuiCheckBox" id="categoryAxisShowFilter" type="checkbox" ng-model="editorState.params.categoryAxes[0].labels.filter"> | ||
</div> | ||
</div> | ||
|
||
<div class="kuiSideBarFormRow"> | ||
<label class="kuiSideBarFormRow__label" for="categoryAxisRotateLabels"> | ||
Rotate | ||
</label> | ||
<label | ||
class="kuiSideBarFormRow__label" | ||
for="categoryAxisRotateLabels" | ||
i18n-id="kbnVislibVisTypes.controls.pointSeries.categoryAxis.rotateLabel" | ||
i18n-default-message="Rotate" | ||
></label> | ||
<div class="kuiSideBarFormRow__control"> | ||
<select | ||
id="categoryAxisRotateLabels" | ||
|
@@ -94,9 +116,12 @@ <h6 class="kuiSideBarFormSectionTitle"> | |
</div> | ||
|
||
<div class="kuiSideBarFormRow"> | ||
<label class="kuiSideBarFormRow__label" for="categoryAxisTruncateLabels"> | ||
Truncate | ||
</label> | ||
<label | ||
class="kuiSideBarFormRow__label" | ||
for="categoryAxisTruncateLabels" | ||
i18n-id="kbnVislibVisTypes.controls.pointSeries.categoryAxis.truncateLabel" | ||
i18n-default-message="Truncate" | ||
></label> | ||
<div class="kuiSideBarFormRow__control"> | ||
<input | ||
id="categoryAxisTruncateLabels" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This comment was marked as resolved.
Sorry, something went wrong.