A locale defines a user language and contains language and country related parameters. Many languages can be added to project to reflect all the variants and country regions to supported by the software project.
You must specify project_id
in a where clause in order to use this table.
select
name,
code
from
phrase_locale
where
project_id = 'oneprojectid';
select
name,
code
from
phrase_locale
where
project_id = 'oneprojectid'
and "default";
select
name,
code
from
phrase_locale
where
project_id = 'oneprojectid'
and statictics_translations_unverified_count > 0;
select
name,
code
from
phrase_locale
where
project_id = 'oneprojectid'
and id = 'onelocaleid';