diff --git a/client/src/helpers/constants.js b/client/src/helpers/constants.js index 99d147b9..d4a415a8 100644 --- a/client/src/helpers/constants.js +++ b/client/src/helpers/constants.js @@ -30,6 +30,10 @@ export const REPOSITORY = { export const PRIVACY_POLICY_LINK = 'https://adguard.com/privacy/home.html'; export const LANGUAGES = [ + { + key: 'en', + name: 'English', + }, { key: 'da', name: 'Dansk', @@ -42,10 +46,6 @@ export const LANGUAGES = [ key: 'nl', name: 'Dutch', }, - { - key: 'en', - name: 'English', - }, { key: 'es', name: 'EspaƱol', @@ -377,3 +377,5 @@ export const DEFAULT_LOGS_FILTER = { filter_question_type: '', filter_response_status: '', }; + +export const DEFAULT_LANGUAGE = 'en';