summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/GL/GCModels/GCwines.pm
blob: 03a36f7cc5643908ef0343a8adca1c859084b6a9 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
    package GCLang::GL::GCModels::GCwines;

    use utf8;

#  Copyright 2007 Yves Martin
    
    use strict;
    use base 'Exporter';

    our @EXPORT = qw(%lang);

    our %lang = (
    
        CollectionDescription => 'Colección de viños',
        Items => {0 => 'Viño',
                  1 => 'Viño',
                  X => 'Viños'},
        NewItem => 'Novo Viño',
    
        Name => 'Nome',
        Designation => 'Denominación',
        Vintage => 'Colleita',
        Vineyard => 'Viñedo',
        Type => 'Tipo',
        Grapes => 'Uva',
        Soil => 'Terra',
        Producer => 'Producción',
        Country => 'País',
        Volume => 'Volume (ml)',
        Alcohol => 'Alcol (%)',
        Medal => 'Medalla',

        Storage => 'Almacenamento',
        Location => 'Localización',
        ShelfIndex => 'Índice',
        Quantity => 'Cantidade',
        Acquisition => 'Adquisición',
        PurchaseDate => 'Data de compra',
        PurchasePrice => 'Prezo de compra',
        Gift => 'Regalo',
        BottleLabel => 'Etiqueta da botella',
        Website => 'Referencias na web',

        Tasted => 'Catado',
        Comments => 'Comentarios',
        Serving => 'Dose',
        TastingField => 'Notas da cata',

        General => 'Xeral',
        Details => 'Detalles',
        Tasting => 'Cata',

        TastedNo => 'Sen catar',
        TastedYes => 'Catado',

        FilterRange => 'Rango',
        FilterTastedNo => '_Non foi catado',
        FilterTastedYes => 'Xa foi catado',
        FilterRatingSelect => 'Puntuado polo menos...'

     );
}

1;