From e1014588917bbf91f4e7f72829f581accc32eeb4 Mon Sep 17 00:00:00 2001 From: decabeza Date: Fri, 20 Jul 2018 18:49:54 +0200 Subject: [PATCH] Removes custom content on seeds --- config/locales/en/seeds.yml | 10 +++++----- config/locales/es/seeds.yml | 10 +++++----- db/seeds.rb | 12 ++++++------ 3 files changed, 16 insertions(+), 16 deletions(-) diff --git a/config/locales/en/seeds.yml b/config/locales/en/seeds.yml index b77ebfc21..4e40cfd63 100644 --- a/config/locales/en/seeds.yml +++ b/config/locales/en/seeds.yml @@ -1,11 +1,11 @@ en: seeds: settings: - official_level_1_name: Public workers - official_level_2_name: Municipal Organization - official_level_3_name: General Directors - official_level_4_name: Councillors - official_level_5_name: Mayor + official_level_1_name: Official position 1 + official_level_2_name: Official position 2 + official_level_3_name: Official position 3 + official_level_4_name: Official position 4 + official_level_5_name: Official position 5 geozones: north_district: North District west_district: West District diff --git a/config/locales/es/seeds.yml b/config/locales/es/seeds.yml index 7640e4e4d..1d6563bef 100644 --- a/config/locales/es/seeds.yml +++ b/config/locales/es/seeds.yml @@ -1,11 +1,11 @@ es: seeds: settings: - official_level_1_name: Empleados públicos - official_level_2_name: Organización Municipal - official_level_3_name: Directores generales - official_level_4_name: Concejales - official_level_5_name: Alcaldesa + official_level_1_name: Cargo oficial 1 + official_level_2_name: Cargo oficial 2 + official_level_3_name: Cargo oficial 3 + official_level_4_name: Cargo oficial 4 + official_level_5_name: Cargo oficial 5 geozones: north_district: Distrito Norte west_district: Distrito Oeste diff --git a/db/seeds.rb b/db/seeds.rb index e453495f2..e39aa7e8b 100644 --- a/db/seeds.rb +++ b/db/seeds.rb @@ -7,11 +7,11 @@ end # Names for the moderation console, as a hint for moderators # to know better how to assign users with official positions -Setting["official_level_1_name"] = "Empleados públicos" -Setting["official_level_2_name"] = "Organización Municipal" -Setting["official_level_3_name"] = "Directores generales" -Setting["official_level_4_name"] = "Concejales" -Setting["official_level_5_name"] = "Alcaldesa" +Setting["official_level_1_name"] = "Cargo oficial 1" +Setting["official_level_2_name"] = "Cargo oficial 2" +Setting["official_level_3_name"] = "Cargo oficial 3" +Setting["official_level_4_name"] = "Cargo oficial 4" +Setting["official_level_5_name"] = "Cargo oficial 5" # Max percentage of allowed anonymous votes on a debate Setting["max_ratio_anon_votes_on_debates"] = 50 @@ -26,7 +26,7 @@ Setting["max_votes_for_proposal_edit"] = 1000 Setting['comments_body_max_length'] = 1000 # Prefix for the Proposal codes -Setting["proposal_code_prefix"] = 'MAD' +Setting["proposal_code_prefix"] = 'CONSUL' # Number of votes needed for proposal success Setting["votes_for_proposal_success"] = 53726