diff options
Diffstat (limited to 'lib/gcstar/GCLang/AR/GCModels/GCwines.pm')
-rw-r--r-- | lib/gcstar/GCLang/AR/GCModels/GCwines.pm | 63 |
1 files changed, 63 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/AR/GCModels/GCwines.pm b/lib/gcstar/GCLang/AR/GCModels/GCwines.pm new file mode 100644 index 0000000..db10bdd --- /dev/null +++ b/lib/gcstar/GCLang/AR/GCModels/GCwines.pm @@ -0,0 +1,63 @@ +{ + package GCLang::AR::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; |