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::RU::GCModels::GCwines;
use utf8;
# Copyright 2007 Yves Martin
use strict;
use base 'Exporter';
our @EXPORT = qw(%lang);
our %lang = (
CollectionDescription => 'Wines collection',
Items => 'Wines',
NewItem => 'New wine',
Name => 'Name',
Designation => 'Designation',
Vintage => 'Vintage',
Vineyard => 'Vineyard',
Type => 'Type',
Grapes => 'Grapes',
Soil => 'Soil',
Producer => 'Producer',
Country => 'Country',
Volume => 'Volume (ml)',
Alcohol => 'Alcohol (%)',
Medal => 'Medal/Honour',
Storage => 'Storage',
Location => 'Location',
ShelfIndex => 'Index',
Quantity => 'Quantity',
Acquisition => 'Acquisition',
PurchaseDate => 'Purchase date',
PurchasePrice => 'Purchase price',
Gift => 'Gift',
BottleLabel => 'Bottle label',
Website => 'Reference on the web',
Tasted => 'Tasted',
Comments => 'Comments',
Serving => 'Serving',
TastingField => 'Testing notes',
General => 'General',
Details => 'Details',
Tasting => 'Tasting',
TastedNo => 'Non tasted',
TastedYes => 'Tasted',
FilterRange => 'Range',
FilterTastedNo => '_Not yet tasted',
FilterTastedYes => 'Already _tasted',
FilterRatingSelect => 'Rating at _least...'
);
}
1;
|