summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/NL/GCModels/GCwines.pm
blob: 035a6fbf33bfe77506249f16901a13e0c76a54ea (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::NL::GCModels::GCwines;

    use utf8;

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

    our @EXPORT = qw(%lang);

    our %lang = (
    
        CollectionDescription => 'Collectie wijn',
        Items => {0 => 'Wijn',
                  1 => 'Wijn',
                  X => 'Wijn'},
        NewItem => 'Nieuwe wijn',
    
        Name => 'Naam',
        Designation => 'Benoeming',
        Vintage => 'Wijnoogst',
        Vineyard => 'Wijngaard',
        Type => 'Type',
        Grapes => 'Druiven',
        Soil => 'Bodem',
        Producer => 'Producent',
        Country => 'Land',
        Volume => 'Inhoud (ml)',
        Alcohol => 'Alcohol (%)',
        Medal => 'Medaille',

        Storage => 'Opslag',
        Location => 'Locatie',
        ShelfIndex => 'Index',
        Quantity => 'Hoeveelheid',
        Acquisition => 'Verwerving',
        PurchaseDate => 'Aankoopdatum',
        PurchasePrice => 'Aankoopprijs',
        Gift => 'Geschenk',
        BottleLabel => 'Label van de fles',
        Website => 'Referentie op het web',

        Tasted => 'Geproefd',
        Comments => 'Opmerkingen',
        Serving => 'Serveren',
        TastingField => 'Nota\'s van het proeven',

        General => 'Algemeen',
        Details => 'Details',
        Tasting => 'Proeven',

        TastedNo => 'Niet geproefd',
        TastedYes => 'Geproefd',

        FilterRange => 'Range',
        FilterTastedNo => '_Nog niet geproefd',
        FilterTastedYes => 'Al geproefd',
        FilterRatingSelect => 'Minimum waardering...'

     );
}

1;