Change reference for slices to chart (#4049)

* change reference for slices to chart

* change profile page reference

* change reference for Associated Slices

* change back to single quotes

* fix other single quotes

* linting

* last one

* fix test
This commit is contained in:
Hugh A. Miles II 2017-12-12 18:02:17 -08:00 committed by Maxime Beauchemin
parent 7d374428d3
commit c84211ec44
6 changed files with 16 additions and 16 deletions

View File

@ -29,9 +29,9 @@ export default class Favorites extends React.PureComponent {
<TableLoader
dataEndpoint={`/superset/fave_slices/${this.props.user.userId}/`}
className="table table-condensed"
columns={['slice', 'creator', 'favorited']}
columns={['chart', 'creator', 'favorited']}
mutator={mutator}
noDataText={t('No favorite slices yet, go click on stars!')}
noDataText={t('No favorite charts yet, go click on stars!')}
sortable
/>
);
@ -59,7 +59,7 @@ export default class Favorites extends React.PureComponent {
<h3>{t('Dashboards')}</h3>
{this.renderDashboardTable()}
<hr />
<h3>{t('Slices')}</h3>
<h3>{t('Charts')}</h3>
{this.renderSliceTable()}
</div>
);

View File

@ -9,5 +9,5 @@ class DatasourceModelView(SupersetModelView):
if obj.slices:
raise SupersetException(Markup(
'Cannot delete a datasource that has slices attached to it.'
"Here's the list of associated slices: " +
"Here's the list of associated charts: " +
''.join([o.slice_link for o in obj.slices])))

View File

@ -243,7 +243,7 @@ class DruidDatasourceModelView(DatasourceModelView, DeleteMixin, YamlExportMixin
}
base_filters = [['id', DatasourceFilter, lambda: []]]
label_columns = {
'slices': _('Associated Slices'),
'slices': _('Associated Charts'),
'datasource_link': _('Data Source'),
'cluster': _('Cluster'),
'description': _('Description'),

View File

@ -210,7 +210,7 @@ class TableModelView(DatasourceModelView, DeleteMixin, YamlExportMixin): # noqa
}
base_filters = [['id', DatasourceFilter, lambda: []]]
label_columns = {
'slices': _('Associated Slices'),
'slices': _('Associated Charts'),
'link': _('Table'),
'changed_by_': _('Changed By'),
'database': _('Database'),

View File

@ -405,10 +405,10 @@ appbuilder.add_view(
class SliceModelView(SupersetModelView, DeleteMixin): # noqa
datamodel = SQLAInterface(models.Slice)
list_title = _('List Slices')
show_title = _('Show Slice')
add_title = _('Add Slice')
edit_title = _('Edit Slice')
list_title = _('List Charts')
show_title = _('Show Chart')
add_title = _('Add Chart')
edit_title = _('Edit Chart')
can_add = False
label_columns = {
@ -449,7 +449,7 @@ class SliceModelView(SupersetModelView, DeleteMixin): # noqa
'modified': _('Last Modified'),
'owners': _('Owners'),
'params': _('Parameters'),
'slice_link': _('Slice'),
'slice_link': _('Chart'),
'slice_name': _('Name'),
'table': _('Table'),
'viz_type': _('Visualization Type'),
@ -483,8 +483,8 @@ class SliceModelView(SupersetModelView, DeleteMixin): # noqa
appbuilder.add_view(
SliceModelView,
'Slices',
label=__('Slices'),
'Charts',
label=__('Charts'),
icon='fa-bar-chart',
category='',
category_icon='',)
@ -496,7 +496,7 @@ class SliceAsync(SliceModelView): # noqa
'creator', 'modified', 'icons']
label_columns = {
'icons': ' ',
'slice_link': _('Slice'),
'slice_link': _('Chart'),
}
@ -556,7 +556,7 @@ class DashboardModelView(SupersetModelView, DeleteMixin): # noqa
'dashboard_link': _('Dashboard'),
'dashboard_title': _('Title'),
'slug': _('Slug'),
'slices': _('Slices'),
'slices': _('Charts'),
'owners': _('Owners'),
'creator': _('Creator'),
'modified': _('Modified'),

View File

@ -548,7 +548,7 @@ class CoreTests(SupersetTestCase):
def test_gamma(self):
self.login(username='gamma')
assert 'List Slice' in self.get_resp('/slicemodelview/list/')
assert 'List Charts' in self.get_resp('/slicemodelview/list/')
assert 'List Dashboard' in self.get_resp('/dashboardmodelview/list/')
def test_csv_endpoint(self):