Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/examples/6_Maths_matchingAnglesAndShapes/js/messages.es.json
blob: d7dffd9b4e06ae487fee7501c0c36372e97c4f6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* -*- coding: utf-8  -*- */
$.i18n.es = {};
$.i18n.es.strings = {
    'Acute-Angle' : 'Ángulo-agudo',
    'Right-Angle' : 'Ángulo-recto',
    'Obtuse-Angle' : 'Ángulo-obtuso',
    'Triangle' : 'Triángulo',
    'Square' : 'Cuadrado',
    'Rhombus' : 'Rombo',
    'Rectangle' : 'Rectángulo',
    'Parallelogram' : 'Paralelogramo',
    'Pentagon' : 'Pentágono',
    'Hexagon' : 'Hexágono',
    'Septagon' : 'Heptágono',
    'Octagon' : 'Octágono',
    'Maths: Matching Angles with Shapes' : 'Matemáticas: reunir angulos y formas'
};

// You can put these inside the dict above, but for now this will be easier to merge.
$.i18n.es.strings['You have completed the game in <span class="specialText">%d</span> clicks within <span class="specialText">%d</span> hour,'] =
    ['Has acabado el juego en <span class="specialText">%d</span> clics en <span class="specialText">%d</span> hora,',
     'Has acabado el juego en <span class="specialText">%d</span> clics en <span class="specialText">%d</span> horas,'];
$.i18n.es.strings['<span class="specialText">%d</span> minute and '] =
    ['<span class="specialText">%d</span> minuto y ',
     '<span class="specialText">%d</span> minutos y '];
$.i18n.es.strings['<span class="specialText">%d</span> second.'] =
    ['<span class="specialText">%d</span> segundo.',
     '<span class="specialText">%d</span> segundos.'];

$(function() { $.i18n.setLocale('es'); });