|
@@ -17,7 +17,7 @@ from __future__ import absolute_import
|
|
|
|
|
|
|
|
import logging
|
|
import logging
|
|
|
|
|
|
|
|
-from django.utils.translation import ugettext_lazy as _, ugettext as _t
|
|
|
|
|
|
|
+from django.utils.translation import ugettext_lazy as _t
|
|
|
|
|
|
|
|
from desktop.lib.conf import Config, UnspecifiedConfigSection, ConfigSection, coerce_password_from_script
|
|
from desktop.lib.conf import Config, UnspecifiedConfigSection, ConfigSection, coerce_password_from_script
|
|
|
from desktop.lib.idbroker import conf as conf_idbroker
|
|
from desktop.lib.idbroker import conf as conf_idbroker
|
|
@@ -115,7 +115,7 @@ AZURE_ACCOUNTS = UnspecifiedConfigSection(
|
|
|
type=coerce_password_from_script,
|
|
type=coerce_password_from_script,
|
|
|
default=None,
|
|
default=None,
|
|
|
private=True,
|
|
private=True,
|
|
|
- help=_("Execute this script to produce the ADLS client secret.")),
|
|
|
|
|
|
|
+ help=_t("Execute this script to produce the ADLS client secret.")),
|
|
|
TENANT_ID=Config(
|
|
TENANT_ID=Config(
|
|
|
key="tenant_id",
|
|
key="tenant_id",
|
|
|
type=str,
|
|
type=str,
|
|
@@ -126,7 +126,7 @@ AZURE_ACCOUNTS = UnspecifiedConfigSection(
|
|
|
type=coerce_password_from_script,
|
|
type=coerce_password_from_script,
|
|
|
default=None,
|
|
default=None,
|
|
|
private=True,
|
|
private=True,
|
|
|
- help=_("Execute this script to produce the ADLS tenant id.")),
|
|
|
|
|
|
|
+ help=_t("Execute this script to produce the ADLS tenant id.")),
|
|
|
)
|
|
)
|
|
|
)
|
|
)
|
|
|
)
|
|
)
|