Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions src/i18n/sponsors/ca.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,15 +225,15 @@ export const ca = {
name: 'Or',
emoji: '🌟',
price: 'Preu 6.000€',
limit: '6 disp.',
limit: '5 disp.',
color: '#facc15',
bg: 'rgba(234, 179, 8, 0.1)',
},
{
name: 'Platí',
emoji: '🏆',
price: 'Preu 8.000€',
limit: '3 disp.',
limit: '2 disp.',
Comment on lines +228 to +236
Copy link

Copilot AI Mar 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same inconsistency as in the other locale files: the tiers.items limit for Gold (Or) and Platinum (Platí) have been updated (to 5 disp. and 2 disp.), but the benefitCategories "Número límit" row (around line 255) still holds the outdated values '6' and '3' for those tiers. The data array needs to be updated from ['Il·limitat', '10', '6', '3', '1'] to ['Il·limitat', '10', '5', '2', '1'].

Copilot uses AI. Check for mistakes.
color: '#4ade80',
bg: 'rgba(34, 197, 94, 0.1)',
},
Expand Down Expand Up @@ -349,37 +349,37 @@ export const ca = {
{
name: 'Espai ChiquiPython',
price: '500€',
available: 'Disponibilitat: 1',
available: 'Disponibilitat: 1/1',
desc: 'La teva marca a l’espai de conciliació (lactància i ludoteca).',
},
{
name: 'Sopar ponents i organització',
price: '2.000€',
available: 'Disponibilitat: 2',
available: 'Disponibilitat: 2/2',
desc: 'La teva marca al sopar exclusiu per a ponents i organització. Inclou entrada per a 2 persones.',
},
{
name: 'Esdeveniment social',
price: '3.000€',
available: 'Disponibilitat: 1',
available: 'Disponibilitat: 1/1',
desc: 'La teva marca a l’esdeveniment social.',
},
{
name: 'Food sponsor',
price: '2.000€',
available: 'Disponibilitat: 6',
available: 'Disponibilitat: 6/6',
desc: 'La teva marca als dinars/coffee breaks de l’esdeveniment.',
},
{
name: 'Django Girls',
price: '1.500€',
available: 'Disponibilitat: 1',
available: 'Disponibilitat: 0/1',
desc: 'La teva marca al Taller Django Girls (orientat a la diversitat i principiants).',
},
{
name: 'Beques diversitat',
price: '300€',
available: 'Disponibilitat: 7',
available: 'Disponibilitat: 7/7',
desc: 'Menció especial durant la presentació d’inici i aparició al lloc web indicant la quantitat de beques que esteu patrocinant.',
},
],
Expand Down
16 changes: 8 additions & 8 deletions src/i18n/sponsors/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,15 +225,15 @@ export const en = {
name: 'Gold',
emoji: '🌟',
price: 'Price €6,000',
limit: '6 avail.',
limit: '5 avail.',
color: '#facc15',
bg: 'rgba(234, 179, 8, 0.1)',
},
{
name: 'Platinum',
emoji: '🏆',
price: 'Price €8,000',
limit: '3 avail.',
limit: '2 avail.',
Comment on lines +228 to +236
Copy link

Copilot AI Mar 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The limit values for Gold and Platinum in tiers.items have been updated to 5 avail. and 2 avail. respectively, but the benefitCategories "Limit number" row (around line 257) still contains the old values '6' and '3' for those same tiers. This creates a visible inconsistency where the tier cards show different numbers than the benefits comparison table. The benefitCategories data array should be updated from ['Unlimited', '10', '6', '3', '1'] to ['Unlimited', '10', '5', '2', '1'] in all three locale files (en.ts, es.ts, and ca.ts).

Copilot uses AI. Check for mistakes.
color: '#4ade80',
bg: 'rgba(34, 197, 94, 0.1)',
},
Expand Down Expand Up @@ -349,37 +349,37 @@ export const en = {
{
name: 'ChiquiPython Space',
price: '€500',
available: 'Availability: 1',
available: 'Availability: 1/1',
desc: 'Your brand in the work-life balance space (nursing and childcare).',
},
{
name: 'Speakers and Org Dinner',
price: '€2,000',
available: 'Availability: 2',
available: 'Availability: 2/2',
desc: 'Your brand at the exclusive dinner for speakers and staff. Includes entry for 2 people.',
},
{
name: 'Social Event',
price: '€3,000',
available: 'Availability: 1',
available: 'Availability: 1/1',
desc: 'Your brand at the main social event.',
},
{
name: 'Food Sponsor',
price: '€2,000',
available: 'Availability: 6',
available: 'Availability: 6/6',
desc: 'Your brand at the event meals/coffee breaks.',
},
{
name: 'Django Girls',
price: '€1,500',
available: 'Availability: 1',
available: 'Availability: 0/1',
desc: 'Your brand at the Django Girls Workshop (diversity and beginner-oriented).',
},
{
name: 'Diversity Grants',
price: '€300',
available: 'Availability: 7',
available: 'Availability: 7/7',
desc: 'Special mention during the opening and web listing indicating the number of grants sponsored.',
},
],
Expand Down
16 changes: 8 additions & 8 deletions src/i18n/sponsors/es.ts
Original file line number Diff line number Diff line change
Expand Up @@ -225,15 +225,15 @@ export const es = {
name: 'Oro',
emoji: '🌟',
price: 'Precio 6.000€',
limit: '6 disp.',
limit: '5 disp.',
color: '#facc15',
bg: 'rgba(234, 179, 8, 0.1)',
},
{
name: 'Platino',
emoji: '🏆',
price: 'Precio 8.000€',
limit: '3 disp.',
limit: '2 disp.',
Comment on lines +228 to +236
Copy link

Copilot AI Mar 3, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same inconsistency as in en.ts: the tiers.items limit for Gold and Platinum have been updated (to 5 disp. and 2 disp.), but the benefitCategories "Número límite" row (around line 257) still holds the outdated values '6' and '3' for those tiers. The data array needs to be updated from ['Ilimitado', '10', '6', '3', '1'] to ['Ilimitado', '10', '5', '2', '1'].

Copilot uses AI. Check for mistakes.
color: '#4ade80',
bg: 'rgba(34, 197, 94, 0.1)',
},
Expand Down Expand Up @@ -349,37 +349,37 @@ export const es = {
{
name: 'Espacio ChiquiPython',
price: '500€',
available: 'Disponibilidad: 1',
available: 'Disponibilidad: 1/1',
desc: 'Tu marca en el espacio de conciliación (lactancia y ludoteca).',
},
{
name: 'Cena ponentes y organización',
price: '2.000€',
available: 'Disponibilidad: 2',
available: 'Disponibilidad: 2/2',
desc: 'Tu marca en la cena exclusiva para ponentes y organización. Incluye entrada para 2 personas.',
},
{
name: 'Evento social',
price: '3.000€',
available: 'Disponibilidad: 1',
available: 'Disponibilidad: 1/1',
desc: 'Tu marca en el evento social.',
},
{
name: 'Food sponsor',
price: '2.000€',
available: 'Disponibilidad: 6',
available: 'Disponibilidad: 6/6',
desc: 'Tu marca en las comidas/coffee breaks del evento.',
},
{
name: 'Django Girls',
price: '1.500€',
available: 'Disponibilidad: 1',
available: 'Disponibilidad: 0/1',
desc: 'Tu marca en el Taller Django Girls (orientado a la diversidad y principiantes).',
},
{
name: 'Becas diversidad',
price: '300€',
available: 'Disponibilidad: 7',
available: 'Disponibilidad: 7/7',
desc: 'Mención especial durante la presentación de inicio y aparición en el sitio web indicando la cantidad de becas que están auspiciando.',
},
],
Expand Down