camper/deploy/available_languages.sql

16 lines
543 B
PL/PgSQL
Raw 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.

-- Deploy camper:available_languages to pg
-- requires: schema_public
-- requires: language
begin;
insert into public.language (lang_tag, name, endonym, selectable, currency_pattern, redsys_code)
values ('und', 'Undefined', 'Undefined', false, '%[3]s%.[1]*[2]f', 0)
, ('ca', 'Catalan', 'català', true, '%.[1]*[2]f %[3]s', 3)
, ('en', 'English', 'English', true, '%[3]s%.[1]*[2]f', 2)
, ('fr', 'French', 'français', true, '%.[1]*[2]f %[3]s', 4)
, ('es', 'Spanish', 'español', true, '%.[1]*[2]f %[3]s', 1)
;
commit;