- client: set the default language first in the list

This commit is contained in:
Ildar Kamalov 2019-10-18 14:15:06 +03:00
parent e72ae3ac6f
commit b2a7e7194a

View File

@ -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';