mirror of
https://github.com/ansible/awx.git
synced 2026-01-16 04:10:44 -03:30
* Adds networking icons, state, and shell
* Adds network UI to the network UI shell.
* Removes jquery as a dependency of network-ui
* Fills the entire viewport with the network canvas and
makes header panel and the right panel overlay on
top of it
20 lines
416 B
JavaScript
20 lines
416 B
JavaScript
function NetworkingStrings (BaseString) {
|
|
BaseString.call(this, 'networking');
|
|
|
|
const { t } = this;
|
|
const ns = this.networking;
|
|
|
|
ns.state = {
|
|
BREADCRUMB_LABEL: t.s('INVENTORIES'),
|
|
};
|
|
|
|
ns.actions = {
|
|
EXPAND_PANEL: t.s('Expand Panel'),
|
|
COLLAPSE_PANEL: t.s('Collapse Panel')
|
|
};
|
|
}
|
|
|
|
NetworkingStrings.$inject = ['BaseStringService'];
|
|
|
|
export default NetworkingStrings;
|