diff options
author | Simon L <szaimen@e.mail.de> | 2023-01-24 10:50:18 +0100 |
---|---|---|
committer | nextcloud-command <nextcloud-command@users.noreply.github.com> | 2023-01-24 10:31:07 +0000 |
commit | e46daa8540ae961673ae06451a57f216c13c5e8c (patch) | |
tree | 18e82276a285e1a77f2643b432745d074665290e /apps | |
parent | f867a2d65e825800d6bf1b685659677f6136ac5f (diff) | |
download | nextcloud-server-e46daa8540ae961673ae06451a57f216c13c5e8c.tar.gz nextcloud-server-e46daa8540ae961673ae06451a57f216c13c5e8c.zip |
don't translate a variable
Signed-off-by: Simon L <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Diffstat (limited to 'apps')
-rw-r--r-- | apps/settings/src/components/PersonalInfo/ProfileVisibilitySection/VisibilityDropdown.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/src/components/PersonalInfo/ProfileVisibilitySection/VisibilityDropdown.vue b/apps/settings/src/components/PersonalInfo/ProfileVisibilitySection/VisibilityDropdown.vue index b148fa97a4d..24f025f2da0 100644 --- a/apps/settings/src/components/PersonalInfo/ProfileVisibilitySection/VisibilityDropdown.vue +++ b/apps/settings/src/components/PersonalInfo/ProfileVisibilitySection/VisibilityDropdown.vue @@ -24,7 +24,7 @@ <div class="visibility-container" :class="{ disabled }"> <label :for="inputId"> - {{ t('settings', '{displayId}', { displayId }) }} + {{ displayId }} </label> <NcMultiselect :id="inputId" class="visibility-container__multiselect" |