Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings/src/constants/AccountPropertyConstants.js')
-rw-r--r--apps/settings/src/constants/AccountPropertyConstants.js10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/settings/src/constants/AccountPropertyConstants.js b/apps/settings/src/constants/AccountPropertyConstants.js
index 19d4814e1c0..0288ee679ce 100644
--- a/apps/settings/src/constants/AccountPropertyConstants.js
+++ b/apps/settings/src/constants/AccountPropertyConstants.js
@@ -50,6 +50,16 @@ export const ACCOUNT_PROPERTY_READABLE_ENUM = Object.freeze({
WEBSITE: t('settings', 'Website'),
})
+/** Enum of setting properties */
+export const SETTING_PROPERTY_ENUM = Object.freeze({
+ LANGUAGE: 'language',
+})
+
+/** Enum of setting properties to human readable setting properties */
+export const SETTING_PROPERTY_READABLE_ENUM = Object.freeze({
+ LANGUAGE: 'Language',
+})
+
/** Enum of scopes */
export const SCOPE_ENUM = Object.freeze({
LOCAL: 'v2-local',