policies: make policy engine modes consistent with database values (#5462)

* policies: make policy engine modes consistent with database values

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* fix in ui

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

* fix missing case

Signed-off-by: Jens Langhammer <jens@goauthentik.io>

---------

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens L 2023-05-03 18:16:16 +03:00 committed by GitHub
parent da6e74a353
commit 3f607ee2c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
18 changed files with 992 additions and 1058 deletions

View File

@ -15,8 +15,8 @@ class Migration(migrations.Migration):
name="policy_engine_mode", name="policy_engine_mode",
field=models.TextField( field=models.TextField(
choices=[ choices=[
("all", "ALL, all policies must pass"), ("all", "all, all policies must pass"),
("any", "ANY, any policy must pass"), ("any", "any, any policy must pass"),
], ],
default="all", default="all",
), ),
@ -27,8 +27,8 @@ class Migration(migrations.Migration):
name="policy_engine_mode", name="policy_engine_mode",
field=models.TextField( field=models.TextField(
choices=[ choices=[
("all", "ALL, all policies must pass"), ("all", "all, all policies must pass"),
("any", "ANY, any policy must pass"), ("any", "any, any policy must pass"),
], ],
default="any", default="any",
), ),

View File

@ -19,8 +19,8 @@ from authentik.policies.types import PolicyRequest, PolicyResult
class PolicyEngineMode(models.TextChoices): class PolicyEngineMode(models.TextChoices):
"""Decide how results of multiple policies should be combined.""" """Decide how results of multiple policies should be combined."""
MODE_ALL = "all", _("ALL, all policies must pass") # type: "PolicyEngineMode" MODE_ALL = "all", _("all, all policies must pass") # type: "PolicyEngineMode"
MODE_ANY = "any", _("ANY, any policy must pass") # type: "PolicyEngineMode" MODE_ANY = "any", _("any, any policy must pass") # type: "PolicyEngineMode"
class PolicyBindingModel(models.Model): class PolicyBindingModel(models.Model):

View File

@ -8,7 +8,7 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-04-28 09:19+0000\n" "POT-Creation-Date: 2023-05-03 14:41+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -31,11 +31,12 @@ msgstr ""
msgid "Validation Error" msgid "Validation Error"
msgstr "" msgstr ""
#: authentik/blueprints/api.py:52 #: authentik/blueprints/api.py:53
msgid "Failed to validate blueprint" #, python-format
msgid "Failed to validate blueprint: %(logs)s"
msgstr "" msgstr ""
#: authentik/blueprints/api.py:57 #: authentik/blueprints/api.py:58
msgid "Either path or content must be set." msgid "Either path or content must be set."
msgstr "" msgstr ""
@ -703,11 +704,11 @@ msgid "Expression Policies"
msgstr "" msgstr ""
#: authentik/policies/models.py:22 #: authentik/policies/models.py:22
msgid "ALL, all policies must pass" msgid "all, all policies must pass"
msgstr "" msgstr ""
#: authentik/policies/models.py:23 #: authentik/policies/models.py:23
msgid "ANY, any policy must pass" msgid "any, any policy must pass"
msgstr "" msgstr ""
#: authentik/policies/models.py:46 #: authentik/policies/models.py:46
@ -1385,7 +1386,7 @@ msgstr ""
msgid "Failed to sync user due to remote error %(name)s: %(error)s" msgid "Failed to sync user due to remote error %(name)s: %(error)s"
msgstr "" msgstr ""
#: authentik/providers/scim/tasks.py:122 #: authentik/providers/scim/tasks.py:123
#, python-format #, python-format
msgid "Failed to sync group due to remote error %(name)s: %(error)s" msgid "Failed to sync group due to remote error %(name)s: %(error)s"
msgstr "" msgstr ""
@ -1580,50 +1581,58 @@ msgid "Discord OAuth Sources"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:171 #: authentik/sources/oauth/models.py:171
msgid "Google OAuth Source" msgid "Patreon OAuth Source"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:172 #: authentik/sources/oauth/models.py:172
msgid "Google OAuth Sources" msgid "Patreon OAuth Sources"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:180 #: authentik/sources/oauth/models.py:180
msgid "Azure AD OAuth Source" msgid "Google OAuth Source"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:181 #: authentik/sources/oauth/models.py:181
msgid "Azure AD OAuth Sources" msgid "Google OAuth Sources"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:189 #: authentik/sources/oauth/models.py:189
msgid "OpenID OAuth Source" msgid "Azure AD OAuth Source"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:190 #: authentik/sources/oauth/models.py:190
msgid "OpenID OAuth Sources" msgid "Azure AD OAuth Sources"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:198 #: authentik/sources/oauth/models.py:198
msgid "Apple OAuth Source" msgid "OpenID OAuth Source"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:199 #: authentik/sources/oauth/models.py:199
msgid "Apple OAuth Sources" msgid "OpenID OAuth Sources"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:207 #: authentik/sources/oauth/models.py:207
msgid "Okta OAuth Source" msgid "Apple OAuth Source"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:208 #: authentik/sources/oauth/models.py:208
msgid "Apple OAuth Sources"
msgstr ""
#: authentik/sources/oauth/models.py:216
msgid "Okta OAuth Source"
msgstr ""
#: authentik/sources/oauth/models.py:217
msgid "Okta OAuth Sources" msgid "Okta OAuth Sources"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:230 #: authentik/sources/oauth/models.py:239
msgid "User OAuth Source Connection" msgid "User OAuth Source Connection"
msgstr "" msgstr ""
#: authentik/sources/oauth/models.py:231 #: authentik/sources/oauth/models.py:240
msgid "User OAuth Source Connections" msgid "User OAuth Source Connections"
msgstr "" msgstr ""

View File

@ -6806,11 +6806,11 @@ paths:
- all - all
- any - any
description: |- description: |-
* `all` - ALL, all policies must pass * `all` - all, all policies must pass
* `any` - ANY, any policy must pass * `any` - any, any policy must pass
* `all` - ALL, all policies must pass * `all` - all, all policies must pass
* `any` - ANY, any policy must pass * `any` - any, any policy must pass
- in: query - in: query
name: re_evaluate_policies name: re_evaluate_policies
schema: schema:
@ -17552,11 +17552,11 @@ paths:
- all - all
- any - any
description: |- description: |-
* `all` - ALL, all policies must pass * `all` - all, all policies must pass
* `any` - ANY, any policy must pass * `any` - any, any policy must pass
* `all` - ALL, all policies must pass * `all` - all, all policies must pass
* `any` - ANY, any policy must pass * `any` - any, any policy must pass
- in: query - in: query
name: profile_url name: profile_url
schema: schema:
@ -17921,11 +17921,11 @@ paths:
- all - all
- any - any
description: |- description: |-
* `all` - ALL, all policies must pass * `all` - all, all policies must pass
* `any` - ANY, any policy must pass * `any` - any, any policy must pass
* `all` - ALL, all policies must pass * `all` - all, all policies must pass
* `any` - ANY, any policy must pass * `any` - any, any policy must pass
- name: search - name: search
required: false required: false
in: query in: query
@ -18358,11 +18358,11 @@ paths:
- all - all
- any - any
description: |- description: |-
* `all` - ALL, all policies must pass * `all` - all, all policies must pass
* `any` - ANY, any policy must pass * `any` - any, any policy must pass
* `all` - ALL, all policies must pass * `all` - all, all policies must pass
* `any` - ANY, any policy must pass * `any` - any, any policy must pass
- in: query - in: query
name: pre_authentication_flow name: pre_authentication_flow
schema: schema:
@ -37980,8 +37980,8 @@ components:
- any - any
type: string type: string
description: |- description: |-
* `all` - ALL, all policies must pass * `all` - all, all policies must pass
* `any` - ANY, any policy must pass * `any` - any, any policy must pass
PolicyRequest: PolicyRequest:
type: object type: object
description: Policy Serializer description: Policy Serializer
@ -38441,12 +38441,13 @@ components:
- facebook - facebook
- github - github
- google - google
- mailcow
- openidconnect - openidconnect
- okta - okta
- patreon
- reddit - reddit
- twitter
- mailcow
- twitch - twitch
- twitter
type: string type: string
description: |- description: |-
* `apple` - Apple * `apple` - Apple
@ -38455,12 +38456,13 @@ components:
* `facebook` - Facebook * `facebook` - Facebook
* `github` - GitHub * `github` - GitHub
* `google` - Google * `google` - Google
* `mailcow` - Mailcow
* `openidconnect` - OpenID Connect * `openidconnect` - OpenID Connect
* `okta` - Okta * `okta` - Okta
* `patreon` - Patreon
* `reddit` - reddit * `reddit` - reddit
* `twitter` - Twitter
* `mailcow` - Mailcow
* `twitch` - Twitch * `twitch` - Twitch
* `twitter` - Twitter
ProxyMode: ProxyMode:
enum: enum:
- proxy - proxy

View File

@ -151,13 +151,13 @@ export class ApplicationForm extends ModelForm<Application, string> {
<ak-radio <ak-radio
.options=${[ .options=${[
{ {
label: "ANY", label: "any",
value: PolicyEngineMode.Any, value: PolicyEngineMode.Any,
default: true, default: true,
description: html`${t`Any policy must match to grant access`}`, description: html`${t`Any policy must match to grant access`}`,
}, },
{ {
label: "ALL", label: "all",
value: PolicyEngineMode.All, value: PolicyEngineMode.All,
description: html`${t`All policies must match to grant access`}`, description: html`${t`All policies must match to grant access`}`,
}, },

View File

@ -263,13 +263,13 @@ export class FlowForm extends ModelForm<Flow, string> {
<ak-radio <ak-radio
.options=${[ .options=${[
{ {
label: "ANY", label: "any",
value: PolicyEngineMode.Any, value: PolicyEngineMode.Any,
default: true, default: true,
description: html`${t`Any policy must match to grant access`}`, description: html`${t`Any policy must match to grant access`}`,
}, },
{ {
label: "ALL", label: "all",
value: PolicyEngineMode.All, value: PolicyEngineMode.All,
description: html`${t`All policies must match to grant access`}`, description: html`${t`All policies must match to grant access`}`,
}, },

View File

@ -225,13 +225,13 @@ export class StageBindingForm extends ModelForm<FlowStageBinding, string> {
<ak-radio <ak-radio
.options=${[ .options=${[
{ {
label: "ANY", label: "any",
value: PolicyEngineMode.Any, value: PolicyEngineMode.Any,
default: true, default: true,
description: html`${t`Any policy must match to grant access`}`, description: html`${t`Any policy must match to grant access`}`,
}, },
{ {
label: "ALL", label: "all",
value: PolicyEngineMode.All, value: PolicyEngineMode.All,
description: html`${t`All policies must match to grant access`}`, description: html`${t`All policies must match to grant access`}`,
}, },

View File

@ -47,6 +47,8 @@ export function ProviderToLabel(provider?: ProviderTypeEnum): string {
return t`Generic OpenID Connect`; return t`Generic OpenID Connect`;
case ProviderTypeEnum.Okta: case ProviderTypeEnum.Okta:
return "Okta"; return "Okta";
case ProviderTypeEnum.Patreon:
return "Patreon";
case ProviderTypeEnum.Reddit: case ProviderTypeEnum.Reddit:
return "Reddit"; return "Reddit";
case ProviderTypeEnum.Twitter: case ProviderTypeEnum.Twitter:

View File

@ -2347,6 +2347,14 @@ msgstr "Richtlinie bearbeiten"
msgid "Edit Stage" msgid "Edit Stage"
msgstr "Stufe bearbeiten" msgstr "Stufe bearbeiten"
#: src/admin/groups/GroupViewPage.ts
msgid "Edit the notes attribute of this group to add notes here. Markdown is supported."
msgstr ""
#: src/admin/users/UserViewPage.ts
msgid "Edit the notes attribute of this user to add notes here. Markdown is supported."
msgstr ""
#: src/admin/policies/BoundPoliciesList.ts #: src/admin/policies/BoundPoliciesList.ts
msgid "Edit User" msgid "Edit User"
msgstr "Benutzer bearbeiten" msgstr "Benutzer bearbeiten"
@ -3113,6 +3121,10 @@ msgstr "Hilfetext"
msgid "Hidden: Hidden field, can be used to insert data into form." msgid "Hidden: Hidden field, can be used to insert data into form."
msgstr "Versteckt: Verstecktes Feld, kann zum Einfügen von Daten in das Formular verwendet werden." msgstr "Versteckt: Verstecktes Feld, kann zum Einfügen von Daten in das Formular verwendet werden."
#: src/admin/users/UserListPage.ts
msgid "Hide deactivated user"
msgstr ""
#: src/admin/property-mappings/PropertyMappingListPage.ts #: src/admin/property-mappings/PropertyMappingListPage.ts
msgid "Hide managed mappings" msgid "Hide managed mappings"
msgstr "Verwaltete Zuordnungen ausblenden" msgstr "Verwaltete Zuordnungen ausblenden"
@ -4323,6 +4335,11 @@ msgstr "Von keinem anderen Objekt verwendet."
msgid "Not you?" msgid "Not you?"
msgstr "Nicht Sie?" msgstr "Nicht Sie?"
#: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserViewPage.ts
msgid "Notes"
msgstr ""
#: src/admin/events/RuleForm.ts #: src/admin/events/RuleForm.ts
#: src/admin/events/RuleListPage.ts #: src/admin/events/RuleListPage.ts
msgid "Notice" msgid "Notice"

View File

@ -2369,6 +2369,14 @@ msgstr "Edit Policy"
msgid "Edit Stage" msgid "Edit Stage"
msgstr "Edit Stage" msgstr "Edit Stage"
#: src/admin/groups/GroupViewPage.ts
msgid "Edit the notes attribute of this group to add notes here. Markdown is supported."
msgstr "Edit the notes attribute of this group to add notes here. Markdown is supported."
#: src/admin/users/UserViewPage.ts
msgid "Edit the notes attribute of this user to add notes here. Markdown is supported."
msgstr "Edit the notes attribute of this user to add notes here. Markdown is supported."
#: src/admin/policies/BoundPoliciesList.ts #: src/admin/policies/BoundPoliciesList.ts
msgid "Edit User" msgid "Edit User"
msgstr "Edit User" msgstr "Edit User"
@ -3154,6 +3162,10 @@ msgstr "Help text"
msgid "Hidden: Hidden field, can be used to insert data into form." msgid "Hidden: Hidden field, can be used to insert data into form."
msgstr "Hidden: Hidden field, can be used to insert data into form." msgstr "Hidden: Hidden field, can be used to insert data into form."
#: src/admin/users/UserListPage.ts
msgid "Hide deactivated user"
msgstr "Hide deactivated user"
#: src/admin/property-mappings/PropertyMappingListPage.ts #: src/admin/property-mappings/PropertyMappingListPage.ts
msgid "Hide managed mappings" msgid "Hide managed mappings"
msgstr "Hide managed mappings" msgstr "Hide managed mappings"
@ -4385,6 +4397,11 @@ msgstr "Not used by any other object."
msgid "Not you?" msgid "Not you?"
msgstr "Not you?" msgstr "Not you?"
#: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserViewPage.ts
msgid "Notes"
msgstr "Notes"
#: src/admin/events/RuleForm.ts #: src/admin/events/RuleForm.ts
#: src/admin/events/RuleListPage.ts #: src/admin/events/RuleListPage.ts
msgid "Notice" msgid "Notice"

View File

@ -2323,6 +2323,14 @@ msgstr "Editar política"
msgid "Edit Stage" msgid "Edit Stage"
msgstr "Editar etapa" msgstr "Editar etapa"
#: src/admin/groups/GroupViewPage.ts
msgid "Edit the notes attribute of this group to add notes here. Markdown is supported."
msgstr ""
#: src/admin/users/UserViewPage.ts
msgid "Edit the notes attribute of this user to add notes here. Markdown is supported."
msgstr ""
#: src/admin/policies/BoundPoliciesList.ts #: src/admin/policies/BoundPoliciesList.ts
msgid "Edit User" msgid "Edit User"
msgstr "Editar usuario" msgstr "Editar usuario"
@ -3089,6 +3097,10 @@ msgstr "Texto de ayuda"
msgid "Hidden: Hidden field, can be used to insert data into form." msgid "Hidden: Hidden field, can be used to insert data into form."
msgstr "Oculto: campo oculto, se puede utilizar para insertar datos en el formulario." msgstr "Oculto: campo oculto, se puede utilizar para insertar datos en el formulario."
#: src/admin/users/UserListPage.ts
msgid "Hide deactivated user"
msgstr ""
#: src/admin/property-mappings/PropertyMappingListPage.ts #: src/admin/property-mappings/PropertyMappingListPage.ts
msgid "Hide managed mappings" msgid "Hide managed mappings"
msgstr "Ocultar mapeos gestionados" msgstr "Ocultar mapeos gestionados"
@ -4299,6 +4311,11 @@ msgstr "No lo usa ningún otro objeto."
msgid "Not you?" msgid "Not you?"
msgstr "¿No eres tú?" msgstr "¿No eres tú?"
#: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserViewPage.ts
msgid "Notes"
msgstr ""
#: src/admin/events/RuleForm.ts #: src/admin/events/RuleForm.ts
#: src/admin/events/RuleListPage.ts #: src/admin/events/RuleListPage.ts
msgid "Notice" msgid "Notice"

View File

@ -2326,6 +2326,14 @@ msgstr "Éditer la politique"
msgid "Edit Stage" msgid "Edit Stage"
msgstr "Éditer l'étap" msgstr "Éditer l'étap"
#: src/admin/groups/GroupViewPage.ts
msgid "Edit the notes attribute of this group to add notes here. Markdown is supported."
msgstr ""
#: src/admin/users/UserViewPage.ts
msgid "Edit the notes attribute of this user to add notes here. Markdown is supported."
msgstr ""
#: src/admin/policies/BoundPoliciesList.ts #: src/admin/policies/BoundPoliciesList.ts
msgid "Edit User" msgid "Edit User"
msgstr "Éditer l'utilisateur" msgstr "Éditer l'utilisateur"
@ -3092,6 +3100,10 @@ msgstr "Texte d'aide"
msgid "Hidden: Hidden field, can be used to insert data into form." msgid "Hidden: Hidden field, can be used to insert data into form."
msgstr "Caché : champ caché, peut être utilisé pour insérer des données dans le formulaire." msgstr "Caché : champ caché, peut être utilisé pour insérer des données dans le formulaire."
#: src/admin/users/UserListPage.ts
msgid "Hide deactivated user"
msgstr ""
#: src/admin/property-mappings/PropertyMappingListPage.ts #: src/admin/property-mappings/PropertyMappingListPage.ts
msgid "Hide managed mappings" msgid "Hide managed mappings"
msgstr "Cacher les mapping gérés" msgstr "Cacher les mapping gérés"
@ -4300,6 +4312,11 @@ msgstr "Pas utilisé par un autre objet."
msgid "Not you?" msgid "Not you?"
msgstr "Pas vous ?" msgstr "Pas vous ?"
#: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserViewPage.ts
msgid "Notes"
msgstr ""
#: src/admin/events/RuleForm.ts #: src/admin/events/RuleForm.ts
#: src/admin/events/RuleListPage.ts #: src/admin/events/RuleListPage.ts
msgid "Notice" msgid "Notice"

View File

@ -2329,6 +2329,14 @@ msgstr "Edytuj zasady"
msgid "Edit Stage" msgid "Edit Stage"
msgstr "Edytuj etap" msgstr "Edytuj etap"
#: src/admin/groups/GroupViewPage.ts
msgid "Edit the notes attribute of this group to add notes here. Markdown is supported."
msgstr ""
#: src/admin/users/UserViewPage.ts
msgid "Edit the notes attribute of this user to add notes here. Markdown is supported."
msgstr ""
#: src/admin/policies/BoundPoliciesList.ts #: src/admin/policies/BoundPoliciesList.ts
msgid "Edit User" msgid "Edit User"
msgstr "Edytuj użytkownika" msgstr "Edytuj użytkownika"
@ -3095,6 +3103,10 @@ msgstr "Tekst pomocy"
msgid "Hidden: Hidden field, can be used to insert data into form." msgid "Hidden: Hidden field, can be used to insert data into form."
msgstr "Ukryte: Ukryte pole, może służyć do wstawiania danych do formularza." msgstr "Ukryte: Ukryte pole, może służyć do wstawiania danych do formularza."
#: src/admin/users/UserListPage.ts
msgid "Hide deactivated user"
msgstr ""
#: src/admin/property-mappings/PropertyMappingListPage.ts #: src/admin/property-mappings/PropertyMappingListPage.ts
msgid "Hide managed mappings" msgid "Hide managed mappings"
msgstr "Ukryj zarządzane mapowania" msgstr "Ukryj zarządzane mapowania"
@ -4307,6 +4319,11 @@ msgstr "Nie używany przez żaden inny obiekt."
msgid "Not you?" msgid "Not you?"
msgstr "Nie ty?" msgstr "Nie ty?"
#: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserViewPage.ts
msgid "Notes"
msgstr ""
#: src/admin/events/RuleForm.ts #: src/admin/events/RuleForm.ts
#: src/admin/events/RuleListPage.ts #: src/admin/events/RuleListPage.ts
msgid "Notice" msgid "Notice"

View File

@ -2355,6 +2355,14 @@ msgstr ""
msgid "Edit Stage" msgid "Edit Stage"
msgstr "" msgstr ""
#: src/admin/groups/GroupViewPage.ts
msgid "Edit the notes attribute of this group to add notes here. Markdown is supported."
msgstr ""
#: src/admin/users/UserViewPage.ts
msgid "Edit the notes attribute of this user to add notes here. Markdown is supported."
msgstr ""
#: src/admin/policies/BoundPoliciesList.ts #: src/admin/policies/BoundPoliciesList.ts
msgid "Edit User" msgid "Edit User"
msgstr "" msgstr ""
@ -3140,6 +3148,10 @@ msgstr ""
msgid "Hidden: Hidden field, can be used to insert data into form." msgid "Hidden: Hidden field, can be used to insert data into form."
msgstr "" msgstr ""
#: src/admin/users/UserListPage.ts
msgid "Hide deactivated user"
msgstr ""
#: src/admin/property-mappings/PropertyMappingListPage.ts #: src/admin/property-mappings/PropertyMappingListPage.ts
msgid "Hide managed mappings" msgid "Hide managed mappings"
msgstr "" msgstr ""
@ -4364,6 +4376,11 @@ msgstr ""
msgid "Not you?" msgid "Not you?"
msgstr "" msgstr ""
#: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserViewPage.ts
msgid "Notes"
msgstr ""
#: src/admin/events/RuleForm.ts #: src/admin/events/RuleForm.ts
#: src/admin/events/RuleListPage.ts #: src/admin/events/RuleListPage.ts
msgid "Notice" msgid "Notice"

View File

@ -2323,6 +2323,14 @@ msgstr "İlkeyi Düzenle"
msgid "Edit Stage" msgid "Edit Stage"
msgstr "Aşama Alanını Düzenle" msgstr "Aşama Alanını Düzenle"
#: src/admin/groups/GroupViewPage.ts
msgid "Edit the notes attribute of this group to add notes here. Markdown is supported."
msgstr ""
#: src/admin/users/UserViewPage.ts
msgid "Edit the notes attribute of this user to add notes here. Markdown is supported."
msgstr ""
#: src/admin/policies/BoundPoliciesList.ts #: src/admin/policies/BoundPoliciesList.ts
msgid "Edit User" msgid "Edit User"
msgstr "Kullanıcı Düzenle" msgstr "Kullanıcı Düzenle"
@ -3089,6 +3097,10 @@ msgstr "Yardım metni"
msgid "Hidden: Hidden field, can be used to insert data into form." msgid "Hidden: Hidden field, can be used to insert data into form."
msgstr "Gizli: Gizli alan, form içine veri eklemek için kullanılabilir." msgstr "Gizli: Gizli alan, form içine veri eklemek için kullanılabilir."
#: src/admin/users/UserListPage.ts
msgid "Hide deactivated user"
msgstr ""
#: src/admin/property-mappings/PropertyMappingListPage.ts #: src/admin/property-mappings/PropertyMappingListPage.ts
msgid "Hide managed mappings" msgid "Hide managed mappings"
msgstr "Yönetilen eşlemeleri gizle" msgstr "Yönetilen eşlemeleri gizle"
@ -4299,6 +4311,11 @@ msgstr "Başka bir nesne tarafından kullanılmaz."
msgid "Not you?" msgid "Not you?"
msgstr "Sen değil mi?" msgstr "Sen değil mi?"
#: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserViewPage.ts
msgid "Notes"
msgstr ""
#: src/admin/events/RuleForm.ts #: src/admin/events/RuleForm.ts
#: src/admin/events/RuleListPage.ts #: src/admin/events/RuleListPage.ts
msgid "Notice" msgid "Notice"

File diff suppressed because it is too large Load Diff

View File

@ -2331,6 +2331,14 @@ msgstr "编辑策略"
msgid "Edit Stage" msgid "Edit Stage"
msgstr "编辑 Stage" msgstr "编辑 Stage"
#: src/admin/groups/GroupViewPage.ts
msgid "Edit the notes attribute of this group to add notes here. Markdown is supported."
msgstr ""
#: src/admin/users/UserViewPage.ts
msgid "Edit the notes attribute of this user to add notes here. Markdown is supported."
msgstr ""
#: src/admin/policies/BoundPoliciesList.ts #: src/admin/policies/BoundPoliciesList.ts
msgid "Edit User" msgid "Edit User"
msgstr "编辑用户" msgstr "编辑用户"
@ -3097,6 +3105,10 @@ msgstr "帮助文本"
msgid "Hidden: Hidden field, can be used to insert data into form." msgid "Hidden: Hidden field, can be used to insert data into form."
msgstr "隐藏:隐藏字段,可用于将数据插入表单。" msgstr "隐藏:隐藏字段,可用于将数据插入表单。"
#: src/admin/users/UserListPage.ts
msgid "Hide deactivated user"
msgstr ""
#: src/admin/property-mappings/PropertyMappingListPage.ts #: src/admin/property-mappings/PropertyMappingListPage.ts
msgid "Hide managed mappings" msgid "Hide managed mappings"
msgstr "隐藏托管映射" msgstr "隐藏托管映射"
@ -4307,6 +4319,11 @@ msgstr "不被任何其他对象使用。"
msgid "Not you?" msgid "Not you?"
msgstr "不是你?" msgstr "不是你?"
#: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserViewPage.ts
msgid "Notes"
msgstr ""
#: src/admin/events/RuleForm.ts #: src/admin/events/RuleForm.ts
#: src/admin/events/RuleListPage.ts #: src/admin/events/RuleListPage.ts
msgid "Notice" msgid "Notice"

View File

@ -2331,6 +2331,14 @@ msgstr "编辑策略"
msgid "Edit Stage" msgid "Edit Stage"
msgstr "编辑 Stage" msgstr "编辑 Stage"
#: src/admin/groups/GroupViewPage.ts
msgid "Edit the notes attribute of this group to add notes here. Markdown is supported."
msgstr ""
#: src/admin/users/UserViewPage.ts
msgid "Edit the notes attribute of this user to add notes here. Markdown is supported."
msgstr ""
#: src/admin/policies/BoundPoliciesList.ts #: src/admin/policies/BoundPoliciesList.ts
msgid "Edit User" msgid "Edit User"
msgstr "编辑用户" msgstr "编辑用户"
@ -3097,6 +3105,10 @@ msgstr "帮助文本"
msgid "Hidden: Hidden field, can be used to insert data into form." msgid "Hidden: Hidden field, can be used to insert data into form."
msgstr "隐藏:隐藏字段,可用于将数据插入表单。" msgstr "隐藏:隐藏字段,可用于将数据插入表单。"
#: src/admin/users/UserListPage.ts
msgid "Hide deactivated user"
msgstr ""
#: src/admin/property-mappings/PropertyMappingListPage.ts #: src/admin/property-mappings/PropertyMappingListPage.ts
msgid "Hide managed mappings" msgid "Hide managed mappings"
msgstr "隐藏托管映射" msgstr "隐藏托管映射"
@ -4307,6 +4319,11 @@ msgstr "不被任何其他对象使用。"
msgid "Not you?" msgid "Not you?"
msgstr "不是你?" msgstr "不是你?"
#: src/admin/groups/GroupViewPage.ts
#: src/admin/users/UserViewPage.ts
msgid "Notes"
msgstr ""
#: src/admin/events/RuleForm.ts #: src/admin/events/RuleForm.ts
#: src/admin/events/RuleListPage.ts #: src/admin/events/RuleListPage.ts
msgid "Notice" msgid "Notice"