camper/verify/available_languages.sql

53 lines
1.0 KiB
PL/PgSQL
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- Verify camper:available_languages on pg
begin;
set search_path to public;
select 1 / count(*)
from language
where lang_tag = 'und'
and name = 'Undefined'
and endonym = 'Undefined'
and not selectable
and currency_pattern = '%[3]s%.[1]*[2]f'
and redsys_code = 0;
select 1 / count(*)
from language
where lang_tag = 'ca'
and name = 'Catalan'
and endonym = 'català'
and selectable
and currency_pattern = '%.[1]*[2]f %[3]s'
and redsys_code = 3;
select 1 / count(*)
from language
where lang_tag = 'en'
and name = 'English'
and endonym = 'English'
and selectable
and currency_pattern = '%[3]s%.[1]*[2]f'
and redsys_code = 2;
select 1 / count(*)
from language
where lang_tag = 'fr'
and name = 'French'
and endonym = 'français'
and selectable
and currency_pattern = '%.[1]*[2]f %[3]s'
and redsys_code = 4;
select 1 / count(*)
from language
where lang_tag = 'es'
and name = 'Spanish'
and endonym = 'español'
and selectable
and currency_pattern = '%.[1]*[2]f %[3]s'
and redsys_code = 1;
rollback;