summaryrefslogtreecommitdiff
path: root/lib/gcstar/GCLang/PT/GCModels/GCwines.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/gcstar/GCLang/PT/GCModels/GCwines.pm')
-rw-r--r--lib/gcstar/GCLang/PT/GCModels/GCwines.pm65
1 files changed, 65 insertions, 0 deletions
diff --git a/lib/gcstar/GCLang/PT/GCModels/GCwines.pm b/lib/gcstar/GCLang/PT/GCModels/GCwines.pm
new file mode 100644
index 0000000..a60fe81
--- /dev/null
+++ b/lib/gcstar/GCLang/PT/GCModels/GCwines.pm
@@ -0,0 +1,65 @@
+{
+ package GCLang::PT::GCModels::GCwines;
+
+ use utf8;
+
+# Copyright 2007 Yves Martin
+
+ use strict;
+ use base 'Exporter';
+
+ our @EXPORT = qw(%lang);
+
+ our %lang = (
+
+ CollectionDescription => 'Wines collection',
+ Items => {0 => 'Wine',
+ 1 => 'Wine',
+ X => '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;