summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/RO/GCModels/GCwines.pm
blob: 2b9c37d989a894c84e7fb927da61e012cb50ffdf (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
{
    package GCLang::RO::GCModels::GCwines;

    use utf8;

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

    our @EXPORT = qw(%lang);

    our %lang = (
    
        CollectionDescription => 'Colecţie de vinuri',
        Items => 'Vinuri',
        NewItem => 'Vin nou',
    
        Name => 'Nume',
        Designation => 'Destinaţie',
        Vintage => 'Recoltă',
        Vineyard => 'Podgorie',
        Type => 'Tip',
        Grapes => 'Struguri',
        Soil => 'Sol',
        Producer => 'Producător',
        Country => 'Ţară',
        Volume => 'Volum (ml)',
        Alcohol => 'Alcool (%)',
        Medal => 'Medalii/Premii',

        Storage => 'Depozitare',
        Location => 'Locaţie',
        ShelfIndex => 'Index',
        Quantity => 'Cantitate',
        Acquisition => 'Achiziţie',
        PurchaseDate => 'Dată cumpărare',
        PurchasePrice => 'Preţ cumpărare',
        Gift => 'Cadou',
        BottleLabel => 'Etichetă sticlă',
        Website => 'Referinţe pe web',

        Tasted => 'Degustat',
        Comments => 'Comentarii',
        Serving => 'Porţie',
        TastingField => 'Note testare',

        General => 'General',
        Details => 'Detalii',
        Tasting => 'Degustare',

        TastedNo => 'Nu a fost degustat',
        TastedYes => 'Degustat',

        FilterRange => 'Limite',
        FilterTastedNo => '_Nu a fost încă degustat',
        FilterTastedYes => 'Deja _degustat',
        FilterRatingSelect => 'Evaluat la cel _puţin...'

     );
}

1;